# Photos

Fetch photos for a specific business or place with contributor details and pagination support.

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

## 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 | Google Business ID in 0x...:0x... format or Google Place ID starting with ChIJ. |
| `limit` | string | No | Maximum number of photos to return (1-20). |
| `page` | string | No | Page token for pagination. |

## Example request

```bash
#!/bin/bash

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

## Example response

```json
{
    "items": [],
    "nextPage": null
}
```

## 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)
