KonbiniAPI · Schema

InstagramLink

External link

APISocial MediaInstagramTikTokActivityStreams 2.0ScrapingData ExtractionPublic DataInfluencer MarketingSocial ListeningCreator ToolsMCPModel Context Protocol

Properties

Name Type Description
type string ActivityStreams object type
href string Link URL
rel string Link relation hint
View JSON Schema on GitHub

JSON Schema

konbiniapi-instagram-link-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-link-schema.json",
  "title": "InstagramLink",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "ActivityStreams object type",
      "example": "Link"
    },
    "href": {
      "type": "string",
      "format": "uri",
      "description": "Link URL",
      "example": "https://linktr.ee/khabylame"
    },
    "rel": {
      "type": "string",
      "description": "Link relation hint",
      "example": "preferred"
    }
  },
  "required": [
    "type",
    "href"
  ],
  "description": "External link"
}