Endpoint Playground
Test Crawlora's Yelp Business Reviews API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/yelp/business/<id>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Yelp business alias or encoded id | |
| limit | integer | No | Max reviews to return, 1-50 | |
| offset | integer | No | Pagination offset |
{
"code": 200,
"msg": "OK",
"data": {
"id": "pequods-pizza-chicago-3",
"limit": 3,
"offset": 0,
"reviews": [
{
"id": "WSbCwfl4YQIezvJNr8RhDA",
"rating": 5,
"text": "Went to pequods at the recommendation of my cousin. The pan pizza was delicious.",
"language": "en",
"time_modified": 1783647292,
"author": "Doug ..",
"author_review_count": 1,
"author_location": "San Francisco, CA",
"share_url": "https://www.yelp.com/biz/pequods-pizza-chicago-3?hrid=WSbCwfl4YQIezvJNr8RhDA"
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Fetches reviews for a Yelp business via Yelp's real Android app backend. Credential-free: no login, no API key, no cookie required from the caller.
{
"code": 200,
"msg": "OK",
"data": {
"id": "pequods-pizza-chicago-3",
"limit": 3,
"offset": 0,
"reviews": [
{
"id": "WSbCwfl4YQIezvJNr8RhDA",
"rating": 5,
"text": "Went to pequods at the recommendation of my cousin. The pan pizza was delicious.",
"language": "en",
"time_modified": 1783647292,
"author": "Doug ..",
"author_review_count": 1,
"author_location": "San Francisco, CA",
"share_url": "https://www.yelp.com/biz/pequods-pizza-chicago-3?hrid=WSbCwfl4YQIezvJNr8RhDA"
}
]
}
}curl "https://api.crawlora.net/api/v1/yelp/business/<id>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"