Endpoint Playground
Test Crawlora's GitHub Repo Languages 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>/languages" \
-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": [
{
"language": "C",
"bytes": 742118394
},
{
"language": "Assembly",
"bytes": 12048221
},
{
"language": "Shell",
"bytes": 2204113
}
]
}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 the language byte breakdown for a repository, sorted by bytes descending (tech fingerprint).
{
"code": 200,
"msg": "OK",
"data": [
{
"language": "C",
"bytes": 742118394
},
{
"language": "Assembly",
"bytes": 12048221
},
{
"language": "Shell",
"bytes": 2204113
}
]
}curl "https://api.crawlora.net/api/v1/github/repo/<owner>/<repo>/languages" \
-H "x-api-key: $CRAWLORA_API_KEY"