Public Playground
Preview the endpoint before sending a live request
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.
Playground
Search Airbnb stays API Playground
Returns normalized Airbnb public web search results.
GETapiKey5 credits/requestairbnb.SearchResponseAirbnb
Endpoint details
Returns normalized Airbnb public web search results.
- Method
- GET
- Path
- /airbnb/search
- Authentication
- apiKey
- Credit cost
- 5 credits/request
- Platform
- Airbnb
- Parameters
- 6 documented fields
Request parameters
location:querycheck_in:querycheck_out:queryadults:querypage:queryx-api-key:header
Response schema fields
locationpageresultsresults[].hostresults[].idresults[].imageresults[].locationresults[].priceresults[].ratingresults[].review_countresults[].titleresults[].url
Sample response summary
{
"code": 200,
"msg": "OK",
"data": {
"location": "New York, NY",
"page": 1,
"results": [
{
"id": "12345678",
"title": "Apartment in New York",
"price": 250
}
]
}
}cURL example
curl "https://api.crawlora.net/api/v1/airbnb/search?location=<location>" \
-H "x-api-key: <api-key>"