Endpoint Playground
Test Crawlora's Accor hotel search 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?query=<query>&stars=1" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Destination or hotel query (at least two characters) | |
| language | string | No | Index locale | |
| page | integer | No | Zero-based result page | |
| limit | integer | No | Results per page, 1-100 | |
| country | string | No | Country facet | |
| city | string | No | City facet | |
| brand | string | No | Accor brand code facet | |
| stars | integer | No | 1 | Exact star facet |
{
"code": 200,
"msg": "OK",
"data": {
"query": "London",
"language": "en",
"page": 0,
"pages": 3,
"total": 56,
"limit": 20,
"hotels": [
{
"hotel_code": "C5Z1",
"name": "Old Thorns Golf Resort and Spa Hampshire by Accor",
"brand": "SAM",
"city": "London",
"country": "United Kingdom",
"country_code": "GB",
"source_url": "https://all.accor.com/hotel/C5Z1/index.en.shtml",
"stars": 4,
"rating": 4.2,
"review_count": 69
}
]
}
}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.
Searches the public Accor hotel index by destination or hotel name, with optional country, city, brand, star, page, and page-size filters. Results contain static hotel identity, location labels, ratings, and source URLs; booking, rates, rooms, reviews, loyalty, and payment flows are excluded.
{
"code": 200,
"msg": "OK",
"data": {
"query": "London",
"language": "en",
"page": 0,
"pages": 3,
"total": 56,
"limit": 20,
"hotels": [
{
"hotel_code": "C5Z1",
"name": "Old Thorns Golf Resort and Spa Hampshire by Accor",
"brand": "SAM",
"city": "London",
"country": "United Kingdom",
"country_code": "GB",
"source_url": "https://all.accor.com/hotel/C5Z1/index.en.shtml",
"stars": 4,
"rating": 4.2,
"review_count": 69
}
]
}
}curl "https://api.crawlora.net/api/v1/accor/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"