Endpoint Playground
Test Crawlora's Nearby Airbnb Markets Dataset 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/nearby?lat=<lat>&lon=<lon>&radius_m=<radius_m>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| lat | number | Yes | Center latitude, from -90 through 90 | |
| lon | number | Yes | Center longitude, from -180 through 180 | |
| radius_m | integer | Yes | Search radius in meters, from 1 through 50000 | |
| precision | integer | No | Geohash precision, from 1 through 12; defaults to a value derived from the radius | |
| min_listings | integer | No | Minimum listings per cell; raises the small-cell suppression floor | |
| country | string | No | Exact ISO-3166-1 alpha-2 country filter, e.g. US | |
| superhost | boolean | No | Count only Superhost listings | |
| min_rating | number | No | Minimum listing rating, from 0 through 5 | |
| active_since | string | No | Freshness filter, an ISO-8601 date (YYYY-MM-DD) |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "airbnb-markets",
"lat": 30.27,
"lon": -97.74,
"radius_m": 5000,
"precision": 6,
"cells": [
{
"geohash": "9v6m",
"lat": 30.27,
"lon": -97.74,
"listings": 320,
"superhost_listings": 96,
"superhost_pct": 30
}
],
"total": 1
}
}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 an aggregate geohash-grid density map of Airbnb listings within a radius of a coordinate, from dataset id enum value `airbnb-markets`. Each cell reports a centroid, listing count and Superhost share; thin cells are suppressed. Aggregate-only. 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": {
"dataset": "airbnb-markets",
"lat": 30.27,
"lon": -97.74,
"radius_m": 5000,
"precision": 6,
"cells": [
{
"geohash": "9v6m",
"lat": 30.27,
"lon": -97.74,
"listings": 320,
"superhost_listings": 96,
"superhost_pct": 30
}
],
"total": 1
}
}curl "https://api.crawlora.net/api/v1/datasets/airbnb-markets/nearby?lat=<lat>&lon=<lon>&radius_m=<radius_m>" \
-H "x-api-key: $CRAWLORA_API_KEY"