Twitch · Example Payload

Twitch Create Clip Example

EntertainmentGamingLive VideoStreamingVideo

Twitch Create Clip Example is an example object payload from Twitch, 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.twitch.tv/helix/clips",
    "headers": {
      "Authorization": "Bearer {user_access_token}",
      "Client-Id": "{client_id}"
    },
    "parameters": {
      "broadcaster_id": "141981764",
      "has_delay": false
    }
  },
  "response": {
    "status": 202,
    "body": {
      "data": [
        {
          "id": "FiveLetterHyphenatedWords",
          "edit_url": "https://clips.twitch.tv/FiveLetterHyphenatedWords/edit"
        }
      ]
    }
  }
}