Endpoint Playground
Test Crawlora's GitHub User Events 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>/events" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| username (path) | string | Yes | GitHub username | |
| page | integer | No | Page number | |
| per_page | integer | No | Results per page (max 100) |
{
"code": 200,
"msg": "OK",
"data": [
{
"id": "48291038472",
"type": "PushEvent",
"repo_name": "torvalds/linux",
"created_at": "2026-06-21T09:14:55Z",
"public": true
}
]
}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 recent public events, normalized to type, repository, and timestamp (freshness signal).
{
"code": 200,
"msg": "OK",
"data": [
{
"id": "48291038472",
"type": "PushEvent",
"repo_name": "torvalds/linux",
"created_at": "2026-06-21T09:14:55Z",
"public": true
}
]
}curl "https://api.crawlora.net/api/v1/github/user/<username>/events" \
-H "x-api-key: $CRAWLORA_API_KEY"