Endpoint Playground
Test Crawlora's Accor place details 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/accor/search/details?source=google_places&id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| source | string | Yes | google_places | Suggestion source |
| id | string | Yes | Identifier returned by Accor search suggestions | |
| language | string | No | Optional locale |
{
"code": 200,
"msg": "OK",
"data": {
"source": "google_places",
"id": "ChIJdd4hrwug2EcRmSrV3Vo6llI",
"description": "London, UK",
"type": "political",
"location": {
"latitude": 51.5072178,
"longitude": -0.1275862
},
"radius": 17885.585
}
}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 an anonymous Accor search suggestion identifier to its description, coordinates, viewport, radius, and address components. It uses the same public place-details source as the Accor search box; booking, rates, rooms, reviews, and account data are excluded.
{
"code": 200,
"msg": "OK",
"data": {
"source": "google_places",
"id": "ChIJdd4hrwug2EcRmSrV3Vo6llI",
"description": "London, UK",
"type": "political",
"location": {
"latitude": 51.5072178,
"longitude": -0.1275862
},
"radius": 17885.585
}
}curl "https://api.crawlora.net/api/v1/accor/search/details?source=<source>&id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"