Endpoint Playground
Test Crawlora's Yelp business 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/search?term=<term>&location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| term | string | Yes | Search term | |
| location | string | Yes | Neighborhood, city, state, or zip code | |
| limit | integer | No | Max results to return, 1-50 | |
| offset | integer | No | Pagination offset |
{
"code": 200,
"msg": "OK",
"data": {
"term": "pizza",
"location": "Chicago, IL",
"limit": 3,
"offset": 0,
"total": 240,
"results": [
{
"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",
"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
}
]
}
}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 Yelp's real Android app business-search backend for a term and location. Credential-free: no login, no API key, no cookie required from the caller.
{
"code": 200,
"msg": "OK",
"data": {
"term": "pizza",
"location": "Chicago, IL",
"limit": 3,
"offset": 0,
"total": 240,
"results": [
{
"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",
"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
}
]
}
}curl "https://api.crawlora.net/api/v1/yelp/search?term=<term>&location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"