Endpoint Playground
Test Crawlora's Accor amenity reference catalog 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/amenities" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"amenities": [
{
"code": "WIFI",
"label": "Wi-Fi",
"category": {
"code": "HOTEL_EQUIPMENT_SERVICE",
"label": "Hotel equipment and services",
"order": 2
},
"top": {
"code": "WIFI",
"label": "Wi-Fi",
"order": 3
}
}
]
}
}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 anonymous public Accor amenity catalog with stable amenity codes, labels, categories, and display ordering. It is reference data for interpreting hotel search facets; booking, rates, rooms, reviews, and account data are excluded.
{
"code": 200,
"msg": "OK",
"data": {
"amenities": [
{
"code": "WIFI",
"label": "Wi-Fi",
"category": {
"code": "HOTEL_EQUIPMENT_SERVICE",
"label": "Hotel equipment and services",
"order": 2
},
"top": {
"code": "WIFI",
"label": "Wi-Fi",
"order": 3
}
}
]
}
}curl "https://api.crawlora.net/api/v1/accor/amenities" \
-H "x-api-key: $CRAWLORA_API_KEY"