Endpoint Playground
Test Crawlora's Search public GitHub users API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/github/search/users?q=<q>&sort=followers&order=asc" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | GitHub user search query | |
| sort | string | No | followers | Sort field |
| order | string | No | asc | Sort order |
| page | integer | No | Page number | |
| per_page | integer | No | Results per page (max 100) |
{
"code": 200,
"msg": "OK",
"data": {
"total_count": 4213,
"items": [
{
"login": "torvalds",
"id": 1024025,
"html_url": "https://github.com/torvalds",
"type": "User",
"score": 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.
Searches public GitHub users (developer discovery). Unauthenticated search is rate limited to roughly 10 requests per minute.
{
"code": 200,
"msg": "OK",
"data": {
"total_count": 4213,
"items": [
{
"login": "torvalds",
"id": 1024025,
"html_url": "https://github.com/torvalds",
"type": "User",
"score": 1
}
]
}
}curl "https://api.crawlora.net/api/v1/github/search/users?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"