| CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 16 Jan 2026 04:48:37 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20110601015044
location: https://web.archive.org/web/20110601015044/https://developer.github.com/v3/issues/comments/
server-timing: captures_list;dur=0.508442, exclusion.robots;dur=0.043302, exclusion.robots.policy;dur=0.033793, esindex;dur=0.008819, cdx.remote;dur=13.066171, LoadShardBlock;dur=152.232476, PetaboxLoader3.datanode;dur=66.283577
x-app-server: wwwb-app210-dc8
x-ts: 302
x-tr: 190
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app210; 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 04:48:38 GMT
content-type: text/html
x-archive-orig-server: nginx/0.7.67
x-archive-orig-date: Wed, 01 Jun 2011 01:50:44 GMT
x-archive-orig-content-length: 11278
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:44 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:44 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.515804, exclusion.robots;dur=0.018781, exclusion.robots.policy;dur=0.008761, esindex;dur=0.010457, cdx.remote;dur=6.312397, LoadShardBlock;dur=150.025522, PetaboxLoader3.datanode;dur=175.831815, load_resource;dur=263.777698, PetaboxLoader3.resolve;dur=159.024655
x-app-server: wwwb-app210-dc8
x-ts: 200
x-tr: 461
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 Comments API v3 | developer.github.com
Issue Comments API
List comments on an issue
GET /repos/:user/:repo/issues/:id/comments
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/comments/1",
"body": "Me too",
"user": {
"login": "octocat",
"id": 1,
"gravatar_url": "https://github.com/images/error/octocat_happy.gif",
"url": "https://api.github.com/users/octocat"
},
"created_at": "2011-04-14T16:00:49Z",
"updated_at": "2011-04-14T16:00:49Z"
}
]
Get a single comment
GET /repos/:user/:repo/issues/comments/:id
Response
Status: 200 OK
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999
{
"url": "https://api.github.com/repos/octocat/Hello-World/issues/comments/1",
"body": "Me too",
"user": {
"login": "octocat",
"id": 1,
"gravatar_url": "https://github.com/images/error/octocat_happy.gif",
"url": "https://api.github.com/users/octocat"
},
"created_at": "2011-04-14T16:00:49Z",
"updated_at": "2011-04-14T16:00:49Z"
}
Create a comment
POST /repos/:user/:repo/issues/:id/comments
Input
{
"body": "String"
}
Response
Status: 201 Created
Location: https://api.github.com/repos/user/repo/issues/comments/1
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999
{
"url": "https://api.github.com/repos/octocat/Hello-World/issues/comments/1",
"body": "Me too",
"user": {
"login": "octocat",
"id": 1,
"gravatar_url": "https://github.com/images/error/octocat_happy.gif",
"url": "https://api.github.com/users/octocat"
},
"created_at": "2011-04-14T16:00:49Z",
"updated_at": "2011-04-14T16:00:49Z"
}
Edit a comment
PATCH /repos/:user/:repo/issues/comments/:id
Input
{
"body": "String"
}
Response
Status: 200 OK
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999
{
"url": "https://api.github.com/repos/octocat/Hello-World/issues/comments/1",
"body": "Me too",
"user": {
"login": "octocat",
"id": 1,
"gravatar_url": "https://github.com/images/error/octocat_happy.gif",
"url": "https://api.github.com/users/octocat"
},
"created_at": "2011-04-14T16:00:49Z",
"updated_at": "2011-04-14T16:00:49Z"
}
Delete a comment
DELETE /repos/:user/:repo/issues/comments/:id
Response
Status: 204 No Content
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999
- © 2011 GitHub Inc. All rights reserved.
- Terms of Service
- Privacy Policy
Powered by the Dedicated Servers and Cloud Computing of Rackspace Hosting®
