Endpoint Playground
Test Crawlora's GitHub users dataset item 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/items/<login>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| login (path) | string | Yes | GitHub login, max 128 characters |
{
"code": 200,
"msg": "OK",
"data": {
"login": "octodev",
"name": "Octo Dev",
"company_normalized": "google",
"blog": "https://octo.dev",
"twitter_username": "octodev",
"influence_tier": "mid",
"geo": {
"country": "Germany",
"country_code": "DE",
"city": "Berlin"
},
"followers": 1200,
"public_repos": 60,
"account_age_years": 10,
"reachable": true,
"domains": [
"ml-ai"
],
"rank_score": 88
}
}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 enriched GitHub user record by login from dataset id enum value `github-users`. 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": {
"login": "octodev",
"name": "Octo Dev",
"company_normalized": "google",
"blog": "https://octo.dev",
"twitter_username": "octodev",
"influence_tier": "mid",
"geo": {
"country": "Germany",
"country_code": "DE",
"city": "Berlin"
},
"followers": 1200,
"public_repos": 60,
"account_age_years": 10,
"reachable": true,
"domains": [
"ml-ai"
],
"rank_score": 88
}
}curl "https://api.crawlora.net/api/v1/datasets/github-users/items/<login>" \
-H "x-api-key: $CRAWLORA_API_KEY"