| CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 16 Jan 2026 13:09:27 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20110714163632
location: https://web.archive.org/web/20110714163632/https://developer.github.com/v3/users
server-timing: captures_list;dur=0.734517, exclusion.robots;dur=0.072011, exclusion.robots.policy;dur=0.059998, esindex;dur=0.013453, cdx.remote;dur=26.665135, LoadShardBlock;dur=108.767344, PetaboxLoader3.datanode;dur=91.806037
x-app-server: wwwb-app28-dc8
x-ts: 302
x-tr: 187
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app28; path=/
x-location: All
x-as: 14061
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 16 Jan 2026 13:09:28 GMT
content-type: text/html
x-archive-orig-server: nginx/1.0.4
x-archive-orig-date: Thu, 14 Jul 2011 16:36:32 GMT
x-archive-orig-content-length: 18065
x-archive-orig-last-modified: Mon, 11 Jul 2011 19:15:49 GMT
x-archive-orig-connection: close
x-archive-orig-expires: Fri, 15 Jul 2011 16:36:32 GMT
x-archive-orig-cache-control: max-age=86400
x-archive-orig-accept-ranges: bytes
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Thu, 14 Jul 2011 16:36:32 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: alexa-web-20110714074206-00040/51_22_20110714163044_crawl101.arc.gz
server-timing: captures_list;dur=1.948822, exclusion.robots;dur=0.042374, exclusion.robots.policy;dur=0.026281, esindex;dur=0.014543, cdx.remote;dur=24.602921, LoadShardBlock;dur=184.881385, PetaboxLoader3.datanode;dur=213.573663, PetaboxLoader3.resolve;dur=155.825904, load_resource;dur=217.473469
x-app-server: wwwb-app28-dc8
x-ts: 200
x-tr: 543
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-as: 14061
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
Users API v3 | developer.github.com
Users API
Many of the resources on the users API provide a shortcut for getting
information about the currently authenticated user. If a request URL
does not include a :user parameter than the response will be for the
logged in user (and you must pass authentication
information with your request).
Get a single user
GET /users/:user
Response
Status: 200 OK
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999
{
"login": "octocat",
"id": 1,
"gravatar_url": "https://github.com/images/error/octocat_happy.gif",
"url": "https://api.github.com/users/octocat",
"name": "monalisa octocat",
"company": "GitHub",
"blog": "https://github.com/blog",
"location": "San Francisco",
"email": "octocat@github.com",
"hireable": false,
"bio": "There once was...",
"public_repos": 2,
"public_gists": 1,
"followers": 20,
"following": 0,
"html_url": "https://github.com/octocat",
"created_at": "2008-01-14T04:33:35Z",
"type": "User"
}
Get the authenticated user
GET /user
Response
Status: 200 OK
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999
{
"login": "octocat",
"id": 1,
"gravatar_url": "https://github.com/images/error/octocat_happy.gif",
"url": "https://api.github.com/users/octocat",
"name": "monalisa octocat",
"company": "GitHub",
"blog": "https://github.com/blog",
"location": "San Francisco",
"email": "octocat@github.com",
"hireable": false,
"bio": "There once was...",
"public_repos": 2,
"public_gists": 1,
"followers": 20,
"following": 0,
"html_url": "https://github.com/octocat",
"created_at": "2008-01-14T04:33:35Z",
"type": "User",
"total_private_repos": 100,
"owned_private_repos": 100,
"private_gists": 81,
"disk_usage": 10000,
"collaborators": 8,
"plan": {
"name": "Medium",
"space": 400,
"collaborators": 10,
"private_repos": 20
}
}
Update the authenticated user
PATCH /user
Input
- name
- Optional string
- Optional string - Publically visible email address.
- blog
- Optional string
- company
- Optional string
- location
- Optional string
- hireable
- Optional boolean
- bio
- Optional string
{
"name": "monalisa octocat",
"email": "octocat@github.com",
"blog": "https://github.com/blog",
"company": "GitHub",
"location": "San Francisco",
"hireable": true,
"bio": "There once..."
}
Response
Status: 200 OK
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999
{
"login": "octocat",
"id": 1,
"gravatar_url": "https://github.com/images/error/octocat_happy.gif",
"url": "https://api.github.com/users/octocat",
"name": "monalisa octocat",
"company": "GitHub",
"blog": "https://github.com/blog",
"location": "San Francisco",
"email": "octocat@github.com",
"hireable": false,
"bio": "There once was...",
"public_repos": 2,
"public_gists": 1,
"followers": 20,
"following": 0,
"html_url": "https://github.com/octocat",
"created_at": "2008-01-14T04:33:35Z",
"type": "User",
"total_private_repos": 100,
"owned_private_repos": 100,
"private_gists": 81,
"disk_usage": 10000,
"collaborators": 8,
"plan": {
"name": "Medium",
"space": 400,
"collaborators": 10,
"private_repos": 20
}
}
This website is open source. Please help us by forking the project and adding to it.
Powered by the Dedicated Servers and Cloud Computing of Rackspace Hosting®