Imgur · Example Payload

Imgur Getimage Example

PhotographyImagesImage HostingAlbumsGallerySocialMemesContent SharingPublic APIs

Imgur Getimage 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": "GET",
    "url": "https://api.imgur.com/3/image/ABC1234",
    "headers": {
      "Authorization": "Client-ID YOUR_CLIENT_ID"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "data": {
        "id": "ABC1234",
        "title": "Sunset over the bay",
        "description": null,
        "datetime": 1748563200,
        "type": "image/jpeg",
        "animated": false,
        "width": 4032,
        "height": 3024,
        "size": 1843271,
        "views": 482,
        "bandwidth": 888056122,
        "link": "https://i.imgur.com/ABC1234.jpg",
        "is_album": false
      },
      "success": true,
      "status": 200
    }
  }
}