Endpoint Playground
Test Crawlora's Retrieve a GitHub user profile 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>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| username (path) | string | Yes | GitHub username |
{
"code": 200,
"msg": "OK",
"data": {
"login": "torvalds",
"name": "Linus Torvalds",
"company": "Linux Foundation",
"blog": "",
"location": "Portland, OR",
"twitter_username": null,
"public_repos": 7,
"followers": 228000,
"social_accounts": [
{
"provider": "mastodon",
"url": "https://social.kernel.org/users/torvalds"
}
]
}
}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 public GitHub user's profile plus user-published social links. Email is included only when the user has made it public on their profile.
{
"code": 200,
"msg": "OK",
"data": {
"login": "torvalds",
"name": "Linus Torvalds",
"company": "Linux Foundation",
"blog": "",
"location": "Portland, OR",
"twitter_username": null,
"public_repos": 7,
"followers": 228000,
"social_accounts": [
{
"provider": "mastodon",
"url": "https://social.kernel.org/users/torvalds"
}
]
}
}curl "https://api.crawlora.net/api/v1/github/user/<username>" \
-H "x-api-key: $CRAWLORA_API_KEY"