KonbiniAPI · Schema

InstagramAttachment

Media file attachment

APISocial MediaInstagramTikTokActivityStreams 2.0ScrapingData ExtractionPublic DataInfluencer MarketingSocial ListeningCreator ToolsMCPModel Context Protocol

Properties

Name Type Description
type string ActivityStreams object type
url array Media download URLs
mediaType string MIME type
width integer Width in pixels
height integer Height in pixels
View JSON Schema on GitHub

JSON Schema

konbiniapi-instagram-attachment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/konbiniapi/main/json-schema/konbiniapi-instagram-attachment-schema.json",
  "title": "InstagramAttachment",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "ActivityStreams object type",
      "example": "Video"
    },
    "url": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      },
      "description": "Media download URLs",
      "example": [
        "https://scontent.cdninstagram.com/v/t50.2886-16/video.mp4"
      ]
    },
    "mediaType": {
      "type": "string",
      "description": "MIME type",
      "example": "video/mp4"
    },
    "width": {
      "type": "integer",
      "description": "Width in pixels",
      "example": 576
    },
    "height": {
      "type": "integer",
      "description": "Height in pixels",
      "example": 1024
    }
  },
  "required": [
    "type",
    "url"
  ],
  "description": "Media file attachment"
}