GET /github/user/:username
Get a public GitHub perfil de usuario by username, incluyendo display name, bio, avatar URL, company, ubicación, public repo count, follower/following counts, and account creation date. Útil para developer portfolio tools, team pages that pull data from GitHub, recruitment platforms, and código abierto contributor profiles. Data from the GitHub API REST.
username
requerido
GitHub username
| Nombre | Requerido | Predeterminado | Descripcion |
|---|---|---|---|
username |
Si | - | GitHub username |
curl https://nordapi.ee/api/v1/github/user/torvalds
curl https://nordapi.ee/api/v1/github/user/torvalds
curl https://nordapi.ee/api/v1/github/user/josevalim
curl https://nordapi.ee/api/v1/github/user/sindresorhus
{
"data": {
"avatar_url": "https://avatars.githubusercontent.com/u/1024025?v=4",
"bio": null,
"blog": "",
"company": "Linux Foundation",
"created_at": "2011-09-03T15:26:22Z",
"followers": 294976,
"following": 0,
"location": "Portland, OR",
"login": "torvalds",
"name": "Linus Torvalds",
"public_repos": 11
},
"success": true
}