# Business Info

Retrieve cached business information from the local database.

- **Documentation:** [https://scrappa.co/docs/google-maps-api/google_business_info](https://scrappa.co/docs/google-maps-api/google_business_info)
- **API group:** Google Maps API
- **Endpoint:** `GET https://scrappa.co/api/maps/business`

## Authentication

Send your Scrappa API key in the `X-API-KEY` request header. Paid endpoints also support accountless x402 payments when called without an API key.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `business_id` | string | Yes | The unique Google Business ID. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/maps/business?business_id=0x8640b88f75b395a3%3A0x8771a1c312c0bd48"
```

## Example response

```json
{
    "name": "Example Business",
    "business_id": "0x8640b88f75b395a3:0x8771a1c312c0bd48"
}
```

## More Scrappa resources

- [API documentation](https://scrappa.co/docs)
- [Full LLM-readable API reference](https://scrappa.co/llms-full.txt)
- [OpenAPI specification](https://scrappa.co/docs/api.json)
- [Pricing](https://scrappa.co/pricing)
