Endpoint Playground
Test Crawlora's Search nearby GitHub users 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/github-users/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 | Latitude | |
| lon | number | Yes | Longitude | |
| radius_m | integer | Yes | Radius in meters, max 50000 | |
| influence_tier | string | No | Follower-tier enum: nano, micro, mid, macro, mega | |
| reachable | boolean | No | Filter by any public contact channel | |
| min_followers | integer | No | Minimum follower count | |
| page | integer | No | Page number, defaults to 1 | |
| page_size | integer | No | Page size, defaults to 20 and maxes at 100; page * page_size must be <= 10000 |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "github-users",
"items": [
{
"login": "octodev",
"name": "Octo Dev",
"influence_tier": "mid",
"geo": {
"country": "United States",
"city": "San Francisco"
},
"followers": 1200,
"reachable": true,
"distance_m": 1840.5
}
],
"page": 1,
"page_size": 20,
"total": 1,
"sort": "distance_asc"
}
}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.
Searches enriched GitHub users near a coordinate, sorted by distance, in dataset id enum value `github-users`. influence_tier enum: `nano`, `micro`, `mid`, `macro`, `mega`. 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": "github-users",
"items": [
{
"login": "octodev",
"name": "Octo Dev",
"influence_tier": "mid",
"geo": {
"country": "United States",
"city": "San Francisco"
},
"followers": 1200,
"reachable": true,
"distance_m": 1840.5
}
],
"page": 1,
"page_size": 20,
"total": 1,
"sort": "distance_asc"
}
}curl "https://api.crawlora.net/api/v1/datasets/github-users/nearby?lat=<lat>&lon=<lon>&radius_m=<radius_m>" \
-H "x-api-key: $CRAWLORA_API_KEY"