Endpoint Playground
Test Crawlora's Retrieve a GitHub repository 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/repo/<owner>/<repo>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| owner (path) | string | Yes | Repository owner (user or org login) | |
| repo (path) | string | Yes | Repository name |
{
"code": 200,
"msg": "OK",
"data": {
"name": "linux",
"full_name": "torvalds/linux",
"owner": "torvalds",
"description": "Linux kernel source tree",
"language": "C",
"topics": [
"kernel",
"linux"
],
"stars": 180000,
"forks": 53000,
"watchers": 180000,
"open_issues": 0,
"license": "GPL-2.0",
"default_branch": "master",
"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 public detail for a single repository (the core project object).
{
"code": 200,
"msg": "OK",
"data": {
"name": "linux",
"full_name": "torvalds/linux",
"owner": "torvalds",
"description": "Linux kernel source tree",
"language": "C",
"topics": [
"kernel",
"linux"
],
"stars": 180000,
"forks": 53000,
"watchers": 180000,
"open_issues": 0,
"license": "GPL-2.0",
"default_branch": "master",
"pushed_at": "2026-06-20T11:02:33Z"
}
}curl "https://api.crawlora.net/api/v1/github/repo/<owner>/<repo>" \
-H "x-api-key: $CRAWLORA_API_KEY"