Endpoint Playground
Test Crawlora's Yelp Geocode 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/geocode?address=<address>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| address | string | Yes | Free-form address to geocode |
{
"code": 200,
"msg": "OK",
"data": {
"address": "1600 Amphitheatre Parkway, Mountain View, CA",
"display_name": "Mountain View, CA",
"address_line_1": "1600 Amphitheatre Pkwy",
"city": "Mountain View",
"state": "CA",
"postal_code": "94043",
"country": "US",
"county": "Santa Clara County",
"coordinates": {
"latitude": 37.4224864,
"longitude": -122.0855962
},
"yelp_available": true
}
}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.
Resolves a free-form address into structured location data (coordinates, city, state, zip, county) via Yelp's real Android app backend. Credential-free: no login, no API key, no cookie required from the caller. Not business-scoped.
{
"code": 200,
"msg": "OK",
"data": {
"address": "1600 Amphitheatre Parkway, Mountain View, CA",
"display_name": "Mountain View, CA",
"address_line_1": "1600 Amphitheatre Pkwy",
"city": "Mountain View",
"state": "CA",
"postal_code": "94043",
"country": "US",
"county": "Santa Clara County",
"coordinates": {
"latitude": 37.4224864,
"longitude": -122.0855962
},
"yelp_available": true
}
}curl "https://api.crawlora.net/api/v1/yelp/geocode?address=<address>" \
-H "x-api-key: $CRAWLORA_API_KEY"