Endpoint Playground
Test Crawlora's Airbnb Host Listings 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/host/<id>/listings" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Host id (numeric) | |
| page | integer | No | 1-based page |
{
"code": 200,
"msg": "OK",
"data": {
"id": "65056940",
"page": 1,
"listings": [
{
"id": "44740639",
"name": "Muji - Mount Austin",
"room_type": "Serviced apartment",
"room_category": "entire_home",
"property_type": "Apartment",
"bedrooms": 1,
"bathrooms": 1,
"beds": 2,
"rating": 4.83,
"review_count": 276,
"image": "https://a0.muscache.com/im/pictures/listing.jpeg",
"is_superhost": true,
"instant_book": true
}
],
"has_more": false
}
}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 listings an Airbnb host manages, paginated. Page 1 comes from the host profile; deeper pages page through the host's full portfolio.
{
"code": 200,
"msg": "OK",
"data": {
"id": "65056940",
"page": 1,
"listings": [
{
"id": "44740639",
"name": "Muji - Mount Austin",
"room_type": "Serviced apartment",
"room_category": "entire_home",
"property_type": "Apartment",
"bedrooms": 1,
"bathrooms": 1,
"beds": 2,
"rating": 4.83,
"review_count": 276,
"image": "https://a0.muscache.com/im/pictures/listing.jpeg",
"is_superhost": true,
"instant_book": true
}
],
"has_more": false
}
}curl "https://api.crawlora.net/api/v1/airbnb/host/<id>/listings" \
-H "x-api-key: $CRAWLORA_API_KEY"