## yelp/photos

`GET /v1/yelp/photos`

Photos and videos of a Yelp business, twenty per page, with the category counts.

*Yelp business photos*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | Business id or alias — e.g. `RJNAeNA-209sctUO0dmwuA` |
| `category` | no | Media category slug (food, drink, menu, ...) — e.g. `food` |
| `page` | no | Page number (20 per page) — e.g. `1` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 1 credit at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/yelp/photos?id=RJNAeNA-209sctUO0dmwuA" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "business_id": "example",
  "categories": [
    {
      "count": 0,
      "name": "example",
      "slug": "example"
    }
  ],
  "category": "example",
  "count": 0,
  "cursor": null,
  "has_more": false,
  "items": [
    {
      "author": {
        "elite_year": 0,
        "friends": 0,
        "id": "example",
        "image": "https://example.com/example",
        "name": "example",
        "photos": 0,
        "reviews": 0
      },
      "caption": "example",
      "duration": 0,
      "height": 0,
      "id": "example",
      "posted_at": "2026-09-01T12:00:00Z",
      "share_url": "https://example.com/example",
      "thumbnail_url": "https://example.com/example",
      "type": "example",
      "url": "https://example.com/example",
      "video_url": "https://example.com/example",
      "width": 0
    }
  ],
  "page": 0,
  "total": 0
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/yelp/photos#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/yelp/photos.json)
