Endpoint Playground
Test Crawlora's Airbnb Host 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>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Host id (numeric) |
{
"code": 200,
"msg": "OK",
"data": {
"id": "65056940",
"name": "Nice",
"url": "https://www.airbnb.com/users/show/65056940",
"is_superhost": true,
"is_home_host": true,
"identity_verified": true,
"verifications": [
"Identity",
"Email address",
"Phone number"
],
"location": "Johor Bahru, Malaysia",
"about": "Hi Dear Guest, thanks for the honor to host you.",
"image": "https://a0.muscache.com/im/pictures/user/User/original/host.jpeg",
"hosting_years": 6,
"member_years": 10,
"review_count": 888,
"listing_count": 3,
"interests": [
"Architecture",
"Wine",
"Yoga"
]
}
}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 a normalized Airbnb public host profile — display name, Superhost and identity-verification status, location, bio, hosting tenure, total guest-review count, and total listing count.
{
"code": 200,
"msg": "OK",
"data": {
"id": "65056940",
"name": "Nice",
"url": "https://www.airbnb.com/users/show/65056940",
"is_superhost": true,
"is_home_host": true,
"identity_verified": true,
"verifications": [
"Identity",
"Email address",
"Phone number"
],
"location": "Johor Bahru, Malaysia",
"about": "Hi Dear Guest, thanks for the honor to host you.",
"image": "https://a0.muscache.com/im/pictures/user/User/original/host.jpeg",
"hosting_years": 6,
"member_years": 10,
"review_count": 888,
"listing_count": 3,
"interests": [
"Architecture",
"Wine",
"Yoga"
]
}
}curl "https://api.crawlora.net/api/v1/airbnb/host/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"