Endpoint Playground
Test Crawlora's Yelp Business 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>" \
-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",
"alias": "pequods-pizza-chicago-3",
"encoded_id": "DXwSYgiXqIVNdO9dazel6w",
"name": "Pequod's Pizza",
"url": "https://www.yelp.com/biz/pequods-pizza-chicago-3",
"website": "http://pequodspizza.com",
"photos": [
"https://s3-media0.fl.yelpcdn.com/bphoto/8QJUNblfCI0EDhOjuIWJ4A/ms.jpg"
],
"rating": 4,
"review_count": 8947,
"price": "$$",
"categories": [
"Pizza"
],
"address": "2207 N Clybourn Ave, Chicago, IL 60614",
"address_details": {
"address_line_1": "2207 N Clybourn Ave",
"city": "Chicago",
"state": "IL",
"postal_code": "60614",
"country": "US"
},
"coordinates": {
"latitude": 41.92187,
"longitude": -87.664486
},
"neighborhoods": [
"DePaul"
],
"phone": "7733271512",
"phone_number": "(773) 327-1512",
"closed": false,
"hours": [
"Mon-Sat 11:00 am - 2:00 am",
"Sun 11:00 am - 12:00 am"
],
"health_score": "Pass",
"description": "Try Our Famous Carmelized Crust.",
"year_established": 1992,
"photo_count": 6052,
"attributes": [
{
"alias": "RestaurantsReservations",
"title": "Takes Reservations",
"value": "Yes"
}
]
}
}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.
Looks up a single Yelp business by alias or encoded id 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",
"alias": "pequods-pizza-chicago-3",
"encoded_id": "DXwSYgiXqIVNdO9dazel6w",
"name": "Pequod's Pizza",
"url": "https://www.yelp.com/biz/pequods-pizza-chicago-3",
"website": "http://pequodspizza.com",
"photos": [
"https://s3-media0.fl.yelpcdn.com/bphoto/8QJUNblfCI0EDhOjuIWJ4A/ms.jpg"
],
"rating": 4,
"review_count": 8947,
"price": "$$",
"categories": [
"Pizza"
],
"address": "2207 N Clybourn Ave, Chicago, IL 60614",
"address_details": {
"address_line_1": "2207 N Clybourn Ave",
"city": "Chicago",
"state": "IL",
"postal_code": "60614",
"country": "US"
},
"coordinates": {
"latitude": 41.92187,
"longitude": -87.664486
},
"neighborhoods": [
"DePaul"
],
"phone": "7733271512",
"phone_number": "(773) 327-1512",
"closed": false,
"hours": [
"Mon-Sat 11:00 am - 2:00 am",
"Sun 11:00 am - 12:00 am"
],
"health_score": "Pass",
"description": "Try Our Famous Carmelized Crust.",
"year_established": 1992,
"photo_count": 6052,
"attributes": [
{
"alias": "RestaurantsReservations",
"title": "Takes Reservations",
"value": "Yes"
}
]
}
}curl "https://api.crawlora.net/api/v1/yelp/business/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"