Endpoint Playground
Test Crawlora's Airbnb 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/airbnb/search?location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| location | string | Yes | Location | |
| check_in | string | No | Check-in date | |
| check_out | string | No | Check-out date | |
| adults | integer | No | Adult guests | |
| page | integer | No | 1-based page | |
| currency | string | No | Currency for bounded map search | |
| ne_lat | number | No | Northeast latitude for bounded map search | |
| ne_lng | number | No | Northeast longitude for bounded map search | |
| sw_lat | number | No | Southwest latitude for bounded map search | |
| sw_lng | number | No | Southwest longitude for bounded map search | |
| zoom | integer | No | Map zoom for bounded map search |
{
"code": 200,
"msg": "OK",
"data": {
"location": "New York, NY",
"page": 1,
"results": [
{
"id": "964337233639659839",
"title": "Cozy & Calm Studio",
"url": "https://www.airbnb.com/rooms/964337233639659839",
"image": "https://a0.muscache.com/image.jpeg",
"price": 717,
"rating": 4.47,
"review_count": 96,
"location": "Apartment in Union City",
"latitude": 40.77525,
"longitude": -74.02586
}
]
}
}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 normalized Airbnb public web search results.
{
"code": 200,
"msg": "OK",
"data": {
"location": "New York, NY",
"page": 1,
"results": [
{
"id": "964337233639659839",
"title": "Cozy & Calm Studio",
"url": "https://www.airbnb.com/rooms/964337233639659839",
"image": "https://a0.muscache.com/image.jpeg",
"price": 717,
"rating": 4.47,
"review_count": 96,
"location": "Apartment in Union City",
"latitude": 40.77525,
"longitude": -74.02586
}
]
}
}curl "https://api.crawlora.net/api/v1/airbnb/search?location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"