Endpoint Playground
Test Crawlora's Stored Google Maps business item 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/datasets/google-map-businesses/items/<place_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| place_id (path) | string | Yes | Google Place ID, max 256 characters |
{
"code": 200,
"msg": "OK",
"data": {
"place_id": "ChIJ99URUeOAhYAR0J5ZUxTesDQ",
"name": "Hotel Zephyr San Francisco",
"address": "250 Beach St, San Francisco, CA 94133",
"website": "https://www.hotelzephyrsf.com/"
}
}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.
Returns one stored Google Maps business by Google place_id from dataset id enum value `google-map-businesses`.
{
"code": 200,
"msg": "OK",
"data": {
"place_id": "ChIJ99URUeOAhYAR0J5ZUxTesDQ",
"name": "Hotel Zephyr San Francisco",
"address": "250 Beach St, San Francisco, CA 94133",
"website": "https://www.hotelzephyrsf.com/"
}
}curl "https://api.crawlora.net/api/v1/datasets/google-map-businesses/items/<place_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"