Imgur · Example Payload

Imgur Createcomment Example

PhotographyImagesImage HostingAlbumsGallerySocialMemesContent SharingPublic APIs

Imgur Createcomment Example is an example object payload from Imgur, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.imgur.com/3/comment",
    "headers": {
      "Authorization": "Bearer YOUR_OAUTH2_ACCESS_TOKEN",
      "Content-Type": "application/x-www-form-urlencoded"
    },
    "body": {
      "image_id": "ABC1234",
      "comment": "This shot is gorgeous, what lens?"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "data": {
        "id": 1029384756
      },
      "success": true,
      "status": 200
    }
  }
}