Endpoint Playground
Test Crawlora's GitHub Pinned 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/user/<username>/pinned" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| username (path) | string | Yes | GitHub username |
{
"code": 200,
"msg": "OK",
"data": [
{
"owner": "torvalds",
"repo": "linux",
"full_name": "torvalds/linux",
"url": "https://github.com/torvalds/linux",
"description": "Linux kernel source tree",
"language": "C",
"stars": 180000,
"forks": 53000
}
]
}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 repositories a user pinned on their public profile (showcase signal). Empty when the user pinned nothing.
{
"code": 200,
"msg": "OK",
"data": [
{
"owner": "torvalds",
"repo": "linux",
"full_name": "torvalds/linux",
"url": "https://github.com/torvalds/linux",
"description": "Linux kernel source tree",
"language": "C",
"stars": 180000,
"forks": 53000
}
]
}curl "https://api.crawlora.net/api/v1/github/user/<username>/pinned" \
-H "x-api-key: $CRAWLORA_API_KEY"