Endpoint Playground
Test Crawlora's GitHub Org 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/org/<org>/repos?sort=created&direction=asc&type=all" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| org (path) | string | Yes | GitHub organization login | |
| 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": "docs",
"description": "The open-source repo for docs.github.com",
"language": "TypeScript",
"stars": 16000,
"forks": 62000
}
]
}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 an organization's public repositories (company tech stack).
{
"code": 200,
"msg": "OK",
"data": [
{
"name": "docs",
"description": "The open-source repo for docs.github.com",
"language": "TypeScript",
"stars": 16000,
"forks": 62000
}
]
}curl "https://api.crawlora.net/api/v1/github/org/<org>/repos" \
-H "x-api-key: $CRAWLORA_API_KEY"