Giphy · Example Payload

Giphy Get Trending Gifs Example

PhotographyMediaGIFsStickersEmojiVideoMessagingSocialMeta

Giphy Get Trending Gifs Example is an example object payload from Giphy, 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.giphy.com/v1/gifs/trending?api_key=YOUR_KEY&limit=1&rating=g"
  },
  "response": {
    "status": 200,
    "body": {
      "data": [
        {
          "type": "gif",
          "id": "3o7TKsQ8gqVrYf6Ksw",
          "slug": "happy-monday-3o7TKsQ8gqVrYf6Ksw",
          "url": "https://giphy.com/gifs/happy-monday-3o7TKsQ8gqVrYf6Ksw",
          "rating": "g",
          "title": "Trending Happy Monday GIF",
          "images": {
            "original": {
              "url": "https://media1.giphy.com/media/3o7TKsQ8gqVrYf6Ksw/giphy.gif",
              "width": "480",
              "height": "270"
            }
          }
        }
      ],
      "pagination": { "total_count": 4000, "count": 1, "offset": 0 },
      "meta": { "status": 200, "msg": "OK", "response_id": "abc123" }
    }
  }
}