| CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 16 Jan 2026 01:24:38 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20110601015049
location: https://web.archive.org/web/20110601015049/https://developer.github.com/v3/issues/events/
server-timing: captures_list;dur=1.299663, exclusion.robots;dur=0.049331, exclusion.robots.policy;dur=0.039733, esindex;dur=0.010687, cdx.remote;dur=11.354009, LoadShardBlock;dur=144.499441, PetaboxLoader3.datanode;dur=106.938956, PetaboxLoader3.resolve;dur=25.121607
x-app-server: wwwb-app227-dc8
x-ts: 302
x-tr: 180
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app227; 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 01:24:39 GMT
content-type: text/html
x-archive-orig-server: nginx/0.7.67
x-archive-orig-date: Wed, 01 Jun 2011 01:50:49 GMT
x-archive-orig-content-length: 10345
x-archive-orig-last-modified: Thu, 19 May 2011 22:21:39 GMT
x-archive-orig-connection: close
x-archive-orig-expires: Thu, 02 Jun 2011 01:50:49 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: Wed, 01 Jun 2011 01:50:49 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-20110715153239-00005/52_22_20110601014948_crawl101.arc.gz
server-timing: captures_list;dur=0.509923, exclusion.robots;dur=0.020032, exclusion.robots.policy;dur=0.009883, esindex;dur=0.010120, cdx.remote;dur=19.112923, LoadShardBlock;dur=236.537095, PetaboxLoader3.datanode;dur=217.392379, PetaboxLoader3.resolve;dur=238.876591, load_resource;dur=255.560312
x-app-server: wwwb-app227-dc8
x-ts: 200
x-tr: 561
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
Issue Events API v3 | developer.github.com
Issue Events API
Records various events that occur around an Issue or Pull Request. This is useful both for display on issue/pull request information pages and also to determine who should be notified of comments.
Attributes
- actor
- Always the User that generated the event.
- commit_id
- The String SHA of a commit that referenced this Issue
- event
- Identifies the actual type of Event that occurred.
Events
- closed
- The issue was closed by the actor. When the commit_id is present, it identifies the commit that closed the issue using “closes / fixes #NN” syntax.
- reopened
- The issue was reopened by the actor.
- subscribed
- The actor subscribed to receive notifications for an issue.
- merged
- The issue was merged by the actor. The
commit_idattribute is the SHA1 of the HEAD commit that was merged. - referenced
- The issue was referenced from a commit message. The
commit_idattribute is the commit SHA1 of where that happened. - mentioned
- The actor was @mentioned in an issue body.
- assigned
- The issue was assigned to the actor.
List events for an issue
GET /repos/:user/:repo/issues/:issue_id/events
Response
Status: 200 OK
X-Next: https://api.github.com/resource?page=2
X-Last: https://api.github.com/resource?page=5
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999
[
{
"url": "https://api.github.com/repos/octocat/Hello-World/issues/events/1",
"actor": {
"login": "octocat",
"id": 1,
"gravatar_url": "https://github.com/images/error/octocat_happy.gif",
"url": "https://api.github.com/users/octocat"
},
"event": "closed",
"commit_id": "SHA",
"created_at": "2011-04-14T16:00:49Z"
}
]
List events for a repository
GET /repos/:user/:repo/issues/events
Response
Status: 200 OK
X-Next: https://api.github.com/resource?page=2
X-Last: https://api.github.com/resource?page=5
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999
[
{
"url": "https://api.github.com/repos/octocat/Hello-World/issues/events/1",
"actor": {
"login": "octocat",
"id": 1,
"gravatar_url": "https://github.com/images/error/octocat_happy.gif",
"url": "https://api.github.com/users/octocat"
},
"event": "closed",
"commit_id": "SHA",
"created_at": "2011-04-14T16:00:49Z"
}
]
Get a single event
GET /repos/:user/:repo/issues/events/:id
Response
Status: 200 OK
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999
{
"url": "https://api.github.com/repos/octocat/Hello-World/issues/events/1",
"actor": {
"login": "octocat",
"id": 1,
"gravatar_url": "https://github.com/images/error/octocat_happy.gif",
"url": "https://api.github.com/users/octocat"
},
"event": "closed",
"commit_id": "SHA",
"created_at": "2011-04-14T16:00:49Z"
}
- © 2011 GitHub Inc. All rights reserved.
- Terms of Service
- Privacy Policy
Powered by the Dedicated Servers and Cloud Computing of Rackspace Hosting®
