KonbiniAPI · Schema

InstagramImage

Image resource

APISocial MediaInstagramTikTokActivityStreams 2.0ScrapingData ExtractionPublic DataInfluencer MarketingSocial ListeningCreator ToolsMCPModel Context Protocol

Properties

Name Type Description
type string ActivityStreams object type
url string Image URL
View JSON Schema on GitHub

JSON Schema

konbiniapi-instagram-image-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-image-schema.json",
  "title": "InstagramImage",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "ActivityStreams object type",
      "example": "Image"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "Image URL",
      "example": "https://scontent.cdninstagram.com/v/t51.2885-19/avatar.jpg"
    }
  },
  "required": [
    "type",
    "url"
  ],
  "description": "Image resource"
}