GET /github/user/:username
Hae julkinen GitHub-käyttäjäprofiili käyttäjätunnuksella, mukaan lukien näyttönimi, bio, avatar-URL, yritys, sijainti, julkisten repojen määrä, seuraajien/seurattavien määrät ja tilin luontipäivä. Hyödyllinen kehittäjien portfoliotyökaluille, tiimisivuille, jotka hakevat tietoja GitHubista, rekrytointialustoille ja avoimen lähdekoodin osallistujaprofiileille. Tiedot GitHub REST API:sta.Hae a public GitHub user profile by username, mukaan lukien display name, bio, avatar URL, company, location, public repo count, follower/following counts, and account creation date. Hyödyllinen developer portfolio tools, team pages that pull data from GitHub, recruitment platforms, and open source contributor profiles. Data the GitHub REST API.
username
pakollinen
GitHub username
| Nimi | Pakollinen | Oletus | Kuvaus |
|---|---|---|---|
username |
Kyllä | - | 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": 304044,
"following": 0,
"location": "Portland, OR",
"login": "torvalds",
"name": "Linus Torvalds",
"public_repos": 11
},
"success": true
}