Endpoint Playground
Test Crawlora's Facet 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/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | Facet enum: influence_tier, type, country, country_code, state, city, domains, company, reachable, has_email, has_twitter, has_blog, active_90d, is_org, is_bot | |
| 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, 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 | |
| is_bot | boolean | No | Bot filter | |
| 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 | |
| lon | number | No | Longitude for radius filtering | |
| 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 |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "github-users",
"facet": "country",
"items": [
{
"value": "United States",
"count": 4210
},
{
"value": "Germany",
"count": 1875
},
{
"value": "India",
"count": 1610
}
]
}
}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 terms aggregation counts for the GitHub users dataset. Facet enum: `influence_tier`, `type`, `country`, `country_code`, `state`, `city`, `domains`, `company`, `reachable`, `has_email`, `has_twitter`, `has_blog`, `active_90d`, `is_org`, `is_bot`. 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",
"facet": "country",
"items": [
{
"value": "United States",
"count": 4210
},
{
"value": "Germany",
"count": 1875
},
{
"value": "India",
"count": 1610
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/github-users/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"