Endpoint Playground
Test Crawlora's Search public GitHub repositories 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/search/repositories?q=<q>&sort=stars&order=asc" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | GitHub repository search query | |
| sort | string | No | stars | Sort field |
| order | string | No | asc | Sort order |
| page | integer | No | Page number | |
| per_page | integer | No | Results per page (max 100) |
{
"code": 200,
"msg": "OK",
"data": {
"total_count": 18742,
"items": [
{
"full_name": "torvalds/linux",
"owner": "torvalds",
"description": "Linux kernel source tree",
"language": "C",
"stars": 180000,
"forks": 53000,
"topics": [
"kernel",
"linux"
],
"license": "GPL-2.0"
}
]
}
}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.
Searches public GitHub repositories (market/competitive discovery). Unauthenticated search is rate limited to roughly 10 requests per minute.
{
"code": 200,
"msg": "OK",
"data": {
"total_count": 18742,
"items": [
{
"full_name": "torvalds/linux",
"owner": "torvalds",
"description": "Linux kernel source tree",
"language": "C",
"stars": 180000,
"forks": 53000,
"topics": [
"kernel",
"linux"
],
"license": "GPL-2.0"
}
]
}
}curl "https://api.crawlora.net/api/v1/github/search/repositories?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"