Endpoint Playground
Test Crawlora's Yelp Business Menu 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>/menu" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Yelp business alias or encoded id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "pequods-pizza-chicago-3",
"items": [
{
"alias": "cheesy-garlic-bread",
"name": "Cheesy Garlic Bread",
"description": "Served with marinara",
"price": "$8.95",
"review_count": 0,
"photo_count": 40,
"photo": "https://s3-media0.fl.yelpcdn.com/bphoto/iMUQ_TU13S51fauZRfj67Q/o.jpg"
}
]
}
}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 menu items 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",
"items": [
{
"alias": "cheesy-garlic-bread",
"name": "Cheesy Garlic Bread",
"description": "Served with marinara",
"price": "$8.95",
"review_count": 0,
"photo_count": 40,
"photo": "https://s3-media0.fl.yelpcdn.com/bphoto/iMUQ_TU13S51fauZRfj67Q/o.jpg"
}
]
}
}curl "https://api.crawlora.net/api/v1/yelp/business/<id>/menu" \
-H "x-api-key: $CRAWLORA_API_KEY"