KonbiniAPI · Schema

TikTokVideoAttachmentHeaders

HTTP headers required for authenticated media download

APISocial MediaInstagramTikTokActivityStreams 2.0ScrapingData ExtractionPublic DataInfluencer MarketingSocial ListeningCreator ToolsMCPModel Context Protocol

Properties

Name Type Description
Cookie string Required cookie header for video download
Referer string Required referer header for video download
View JSON Schema on GitHub

JSON Schema

konbiniapi-tik-tok-video-attachment-headers-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/konbiniapi/main/json-schema/konbiniapi-tik-tok-video-attachment-headers-schema.json",
  "title": "TikTokVideoAttachmentHeaders",
  "type": "object",
  "properties": {
    "Cookie": {
      "type": "string",
      "description": "Required cookie header for video download",
      "example": "tt_chain_token=sTA6PK6OnvhW7YemGVwMig=="
    },
    "Referer": {
      "type": "string",
      "description": "Required referer header for video download",
      "example": "https://www.tiktok.com/"
    }
  },
  "required": [
    "Cookie",
    "Referer"
  ],
  "description": "HTTP headers required for authenticated media download"
}