> ## Documentation Index
> Fetch the complete documentation index at: https://developer.willro.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Business Information

> Retrieve comprehensive business details for Willro integrations

Fetch detailed information about a business, including profile, contact details, and metadata.

<Note>
  This endpoint returns all business details in a single response — no
  pagination required.
</Note>

***

## Onboarding Guide

This API is part of Willro's business integration suite. Use it to retrieve **profile**, **contact**, and **metadata** of your business in one call.

### Requirements

* A valid **API key** (passed in the `x-api-key` header)
* The endpoint must be accessed over HTTPS
* Ensure your key is kept **confidential** and never exposed publicly

## Endpoint

GET /integration/business-api/info

**Base URL:** `https://api.willro.com`

## Authentication

<ParamField header="x-api-key" type="string" required>
  Your Willro API key. You can find it in your Willro dashboard under Developer

  > API Keys:
  > `willro_live_sk_95ad4a1e-48ac-4872-ae02-0d40072b60bf_6b7ec4b3af7911a65ee1c3a5ce3fe84b8c2e34136ca71030`
</ParamField>

***

## Request Example

<CodeGroup>
  ```javascript theme={null}
  const response = await fetch('https://api.willro.com/integration/business-api/info', {
    method: 'GET',
    headers: {
      'x-api-key': 'willro_live_sk_95ad4a1e-48ac-4872-ae02-0d40072b60bf_6b7ec4b3af7911a65ee1c3a5ce3fe84b8c2e34136ca71030',
      'Content-Type': 'application/json'
    }
  });

  const data = await response.json();
  console.log(data);

  ```
</CodeGroup>

## Response Example

```js theme={null}
{
  "businessName": "ExampleCo",
  "website": "https://example.com",
  "category": "Retail",
  "averageRating": 3.2,
  "totalReview": 12,
  "googleMapUrl": null,
  "location": "London, UK",
  "ratingsBreakdown": [
    { "count": 3, "rating": 5 },
    { "count": 4, "rating": 4 }
  ]
}

```
