## yelp/reviews

`GET /v1/yelp/reviews`

Reviews of a Yelp business, ten per page, with the author profile, votes, photos and any owner reply.

*Yelp business reviews*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | Business id or alias, or its yelp.com URL — e.g. `RJNAeNA-209sctUO0dmwuA` |
| `page` | no | Page number (10 per page) — e.g. `1` |
| `sort` | no | yelp (default) or newest — e.g. `newest` |
| `keywords` | no | Only reviews mentioning this text |
| `language` | no | ISO 639-1 language — e.g. `en` |
| `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:** 3 credits 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/reviews?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",
  "count": 0,
  "cursor": null,
  "has_more": false,
  "items": [
    {
      "author": {
        "elite_year": 0,
        "friends": 0,
        "id": "example",
        "image": "https://example.com/example",
        "location": "example",
        "name": "example",
        "photos": 0,
        "reviews": 0,
        "url": "https://example.com/example"
      },
      "id": "example",
      "images": [
        {}
      ],
      "language": "example",
      "platform": "example",
      "posted_at": "2026-09-01T12:00:00Z",
      "rating": 0,
      "text": "example",
      "url": "https://example.com/example",
      "votes": {
        "cool": 0,
        "funny": 0,
        "useful": 0
      }
    }
  ],
  "languages": {
    "en": 0,
    "es": 0,
    "fr": 0,
    "zh": 0
  },
  "page": 0,
  "total": 0,
  "total_pages": 0
}
```

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