Endpoint Playground
Test Crawlora's GitHub User Repos 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/user/<username>/repos?sort=created&direction=asc&type=all" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| username (path) | string | Yes | GitHub username | |
| sort | string | No | created | Sort field |
| direction | string | No | asc | Sort direction |
| type | string | No | all | Repository type |
| page | integer | No | Page number | |
| per_page | integer | No | Results per page (max 100) |
{
"code": 200,
"msg": "OK",
"data": [
{
"name": "linux",
"description": "Linux kernel source tree",
"language": "C",
"stars": 180000,
"forks": 53000,
"topics": [
"kernel",
"linux"
],
"is_fork": false,
"pushed_at": "2026-06-20T11:02:33Z"
}
]
}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 a page of a user's public repositories (tech-stack signal).
{
"code": 200,
"msg": "OK",
"data": [
{
"name": "linux",
"description": "Linux kernel source tree",
"language": "C",
"stars": 180000,
"forks": 53000,
"topics": [
"kernel",
"linux"
],
"is_fork": false,
"pushed_at": "2026-06-20T11:02:33Z"
}
]
}curl "https://api.crawlora.net/api/v1/github/user/<username>/repos" \
-H "x-api-key: $CRAWLORA_API_KEY"