Endpoint Playground
Test Crawlora's Airbnb Markets Dataset Country API with realistic prefilled filters. Generate a cURL request, inspect stored structured JSON records, and open the full docs or pricing page when you are ready to integrate dataset search. Dataset Playground requests query indexed data and do not apply proxy routing.
curl "https://api.crawlora.net/api/v1/datasets/airbnb-markets/items/<country>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| country (path) | string | Yes | ISO-3166-1 alpha-2 country code, e.g. FR |
{
"code": 200,
"msg": "OK",
"data": {
"country": "US",
"listings": 1212294,
"superhost_listings": 303073,
"superhost_pct": 25,
"guest_favorite_listings": 121229,
"guest_favorite_pct": 10,
"rated_listings": 776000,
"avg_rating": 4.72,
"avg_review_count": 31.5,
"enriched_listings": 280000,
"superhost_pct_enriched": 29.4,
"guest_favorite_pct_enriched": 18.7,
"avg_person_capacity": 4.2,
"distinct_hosts": 214500,
"listings_per_host": 1.31,
"last_seen": "2026-07-03T00:00:00Z",
"bounds": {
"top_left": {
"lat": 71.4,
"lon": -177.1
},
"bottom_right": {
"lat": 18.9,
"lon": -66.9
}
},
"metros": [
{
"key": "Austin",
"listings": 12040,
"superhost_listings": 6020,
"superhost_pct": 50,
"guest_favorite_listings": 3010,
"guest_favorite_pct": 25,
"rated_listings": 9800,
"avg_rating": 4.9,
"median_price_usd": 205
}
],
"currencies": [
{
"currency": "USD",
"listings": 512000,
"p25": 95,
"p50": 150,
"p75": 260
}
],
"price_usd": {
"listings": 534000,
"p25": 96,
"p50": 152,
"p75": 265
}
}
}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 one country's full aggregate Airbnb market profile from dataset id enum value `airbnb-markets` — headline supply, Superhost share, Guest Favorite share (`guest_favorite_pct`, an observed lower bound), `avg_person_capacity` (average guests a listing sleeps over the detail-page-enriched sample), ratings, its top metros, bounding box, per-currency nightly-price percentiles, and a USD-normalized `price_usd` percentile block (converted via an approximate dated FX snapshot) for cross-country comparison. Aggregate-only. Returns 404 for a country below the suppression floor. Dataset endpoints are built for repeatable structured search, facets, geo queries, pagination, and item lookup over indexed records. They do not trigger live scraping or proxy routing.
{
"code": 200,
"msg": "OK",
"data": {
"country": "US",
"listings": 1212294,
"superhost_listings": 303073,
"superhost_pct": 25,
"guest_favorite_listings": 121229,
"guest_favorite_pct": 10,
"rated_listings": 776000,
"avg_rating": 4.72,
"avg_review_count": 31.5,
"enriched_listings": 280000,
"superhost_pct_enriched": 29.4,
"guest_favorite_pct_enriched": 18.7,
"avg_person_capacity": 4.2,
"distinct_hosts": 214500,
"listings_per_host": 1.31,
"last_seen": "2026-07-03T00:00:00Z",
"bounds": {
"top_left": {
"lat": 71.4,
"lon": -177.1
},
"bottom_right": {
"lat": 18.9,
"lon": -66.9
}
},
"metros": [
{
"key": "Austin",
"listings": 12040,
"superhost_listings": 6020,
"superhost_pct": 50,
"guest_favorite_listings": 3010,
"guest_favorite_pct": 25,
"rated_listings": 9800,
"avg_rating": 4.9,
"median_price_usd": 205
}
],
"currencies": [
{
"currency": "USD",
"listings": 512000,
"p25": 95,
"p50": 150,
"p75": 260
}
],
"price_usd": {
"listings": 534000,
"p25": 96,
"p50": 152,
"p75": 265
}
}
}curl "https://api.crawlora.net/api/v1/datasets/airbnb-markets/items/<country>" \
-H "x-api-key: $CRAWLORA_API_KEY"