Endpoint Playground
Test Crawlora's Accor hotel metadata 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/property?hotel_code=<hotel_code>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| hotel_code | string | Yes | Four-character Accor hotel code |
{
"code": 200,
"msg": "OK",
"data": {
"property": {
"property_code": "A7L5",
"source_url": "https://all.accor.com/hotel/A7L5/index.en.shtml",
"name": "SO/ PARIS Hotel",
"brand": "SO/",
"city": "Paris",
"country": "FR",
"amenities": [
"Wi-Fi"
],
"check_in_time": "15:00:00",
"check_out_time": "12:00:00",
"retrieved_at": "2026-08-27T01:21:19Z"
}
}
}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 static public metadata for one Accor hotel code, including name, brand, city/country, explicitly listed amenities, and published check-in/check-out times. Booking, rates, rooms, reviews, contacts, and precise location are excluded.
{
"code": 200,
"msg": "OK",
"data": {
"property": {
"property_code": "A7L5",
"source_url": "https://all.accor.com/hotel/A7L5/index.en.shtml",
"name": "SO/ PARIS Hotel",
"brand": "SO/",
"city": "Paris",
"country": "FR",
"amenities": [
"Wi-Fi"
],
"check_in_time": "15:00:00",
"check_out_time": "12:00:00",
"retrieved_at": "2026-08-27T01:21:19Z"
}
}
}curl "https://api.crawlora.net/api/v1/accor/property?hotel_code=<hotel_code>" \
-H "x-api-key: $CRAWLORA_API_KEY"