Endpoint Playground
Test Crawlora's Yelp Business Reviews Search 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/search?term=<term>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Yelp business alias or encoded id | |
| term | string | Yes | Keyword to search reviews for |
{
"code": 200,
"msg": "OK",
"data": {
"id": "pequods-pizza-chicago-3",
"term": "crust",
"total": 20,
"reviews": [
{
"id": "EP-EHp1CSY2fjDrWlZm4aw",
"rating": 5,
"excerpt_html": "…deep dish with pepperoni and were in heaven. The <b>crust</b> is my ideal…",
"language": "en",
"time_modified": 1785790947,
"author": "Lingxiao C.",
"author_review_count": 541,
"author_location": "Manhattan, New York, NY",
"share_url": "https://www.yelp.com/biz/pequods-pizza-chicago-3?hrid=EP-EHp1CSY2fjDrWlZm4aw"
}
]
}
}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.
Searches a Yelp business's reviews for a keyword via Yelp's real Android app backend, returning a highlighted excerpt per match. Credential-free: no login, no API key, no cookie required from the caller.
{
"code": 200,
"msg": "OK",
"data": {
"id": "pequods-pizza-chicago-3",
"term": "crust",
"total": 20,
"reviews": [
{
"id": "EP-EHp1CSY2fjDrWlZm4aw",
"rating": 5,
"excerpt_html": "…deep dish with pepperoni and were in heaven. The <b>crust</b> is my ideal…",
"language": "en",
"time_modified": 1785790947,
"author": "Lingxiao C.",
"author_review_count": 541,
"author_location": "Manhattan, New York, NY",
"share_url": "https://www.yelp.com/biz/pequods-pizza-chicago-3?hrid=EP-EHp1CSY2fjDrWlZm4aw"
}
]
}
}curl "https://api.crawlora.net/api/v1/yelp/business/<id>/reviews/search?term=<term>" \
-H "x-api-key: $CRAWLORA_API_KEY"