KonbiniAPI · Schema

InstagramTag

Hashtag or user mention

APISocial MediaInstagramTikTokActivityStreams 2.0ScrapingData ExtractionPublic DataInfluencer MarketingSocial ListeningCreator ToolsMCPModel Context Protocol

Properties

Name Type Description
type string ActivityStreams object type
name string Tag name
href string Tag URL
View JSON Schema on GitHub

JSON Schema

konbiniapi-instagram-tag-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-tag-schema.json",
  "title": "InstagramTag",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "ActivityStreams object type",
      "example": "Tag"
    },
    "name": {
      "type": "string",
      "description": "Tag name",
      "example": "learnfromkhaby"
    },
    "href": {
      "type": "string",
      "format": "uri",
      "description": "Tag URL",
      "example": "https://www.instagram.com/explore/tags/learnfromkhaby/"
    }
  },
  "required": [
    "type",
    "name",
    "href"
  ],
  "description": "Hashtag or user mention"
}