Endpoint Playground
Test Crawlora's Search the GitHub users 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/github-users/search" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Full-text query over login, name, company, bio and location, max 256 characters | |
| login | string | No | Exact login filter, max 128 characters | |
| company | string | No | Exact normalized-company filter, max 128 characters | |
| influence_tier | string | No | Follower-tier enum: nano, micro, mid, macro, mega | |
| country | string | No | Exact geocoded country filter, max 128 characters | |
| country_code | string | No | Exact ISO country-code filter, max 128 characters | |
| state | string | No | Exact geocoded state filter, max 128 characters | |
| city | string | No | Exact geocoded city filter, max 128 characters | |
| domain | string | No | Interest-domain tag filter (e.g. ml-ai, web, devops), max 128 characters | |
| has_email | boolean | No | Filter by public email presence | |
| has_twitter | boolean | No | Filter by public Twitter/X handle presence | |
| has_blog | boolean | No | Filter by public blog/website presence | |
| reachable | boolean | No | Filter by any public contact channel | |
| active_90d | boolean | No | Filter by activity within the last 90 days | |
| hireable | boolean | No | Filter by the GitHub available-for-hire flag | |
| is_org | boolean | No | Organization filter (normally false; the crawl indexes individuals) | |
| is_bot | boolean | No | Bot filter (normally false; the crawl skips bots) | |
| min_followers | integer | No | Minimum follower count | |
| max_followers | integer | No | Maximum follower count | |
| min_repos | integer | No | Minimum public repository count | |
| min_rank_score | integer | No | Minimum composite rank score | |
| min_account_age_years | number | No | Minimum account age in years | |
| max_account_age_years | number | No | Maximum account age in years | |
| lat | number | No | Latitude for radius filtering or distance sort | |
| lon | number | No | Longitude for radius filtering or distance sort | |
| radius_m | integer | No | Radius in meters, 1 through 50000; requires lat and lon when supplied | |
| sort | string | No | Sort enum: relevance, rank_score_desc, followers_desc, account_age_desc, account_age_asc, distance_asc | |
| 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",
"company_normalized": "google",
"influence_tier": "mid",
"geo": {
"country": "Germany",
"country_code": "DE",
"city": "Berlin"
},
"followers": 1200,
"reachable": true,
"has_email": true,
"domains": [
"ml-ai"
],
"rank_score": 88
}
],
"page": 1,
"page_size": 20,
"total": 1,
"sort": "rank_score_desc"
}
}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 public GitHub user profiles stored in a search index. influence_tier enum: `nano`, `micro`, `mid`, `macro`, `mega`. Sort enum: `relevance`, `rank_score_desc`, `followers_desc`, `account_age_desc`, `account_age_asc`, `distance_asc`. 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",
"company_normalized": "google",
"influence_tier": "mid",
"geo": {
"country": "Germany",
"country_code": "DE",
"city": "Berlin"
},
"followers": 1200,
"reachable": true,
"has_email": true,
"domains": [
"ml-ai"
],
"rank_score": 88
}
],
"page": 1,
"page_size": 20,
"total": 1,
"sort": "rank_score_desc"
}
}curl "https://api.crawlora.net/api/v1/datasets/github-users/search" \
-H "x-api-key: $CRAWLORA_API_KEY"