Endpoint Playground
Test Crawlora's Accor hotels in a destination 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/destination/hotels?destination_type=world&theme=4-stars" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| destination_type | string | Yes | world | Destination level: world, continent, country, region, department, city, district, or place |
| slug | string | No | Destination page slug, e.g. hotels-dusseldorf-v1158. Required for every type except world. | |
| theme | string | No | 4-stars | Optional theme facet: 4-stars, 5-stars, apart-hotel, breakfast, budget-friendly, business, eco-certified, family-friendly, fitness, luxury, meetings-and-events, parking, pet-friendly, pool, resorts, or spa |
{
"code": 200,
"msg": "OK",
"data": {
"destination": {
"destination_type": "city",
"name": "Dusseldorf Hotels",
"source_url": "https://all.accor.com/a/en/destination/city/hotels-dusseldorf-v1158.html",
"hotels": [
{
"hotel_code": "5373",
"name": "Mercure Hotel Duesseldorf City Center",
"source_url": "https://all.accor.com/hotel/5373/index.en.shtml",
"city": "DUESSELDORF",
"country": "DE"
}
]
}
}
}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 the static list of hotels published on one Accor destination directory page (world, continent, country, region, department, city, district, or place), optionally narrowed by a theme facet. Each hotel carries its code, name, source URL, and broad city/country. Booking, rates, rooms, reviews, contacts, and precise location are excluded.
{
"code": 200,
"msg": "OK",
"data": {
"destination": {
"destination_type": "city",
"name": "Dusseldorf Hotels",
"source_url": "https://all.accor.com/a/en/destination/city/hotels-dusseldorf-v1158.html",
"hotels": [
{
"hotel_code": "5373",
"name": "Mercure Hotel Duesseldorf City Center",
"source_url": "https://all.accor.com/hotel/5373/index.en.shtml",
"city": "DUESSELDORF",
"country": "DE"
}
]
}
}
}curl "https://api.crawlora.net/api/v1/accor/destination/hotels?destination_type=<destination_type>" \
-H "x-api-key: $CRAWLORA_API_KEY"