KonbiniAPI · Schema

TikTokCollection

Video collection or playlist

Social-MediaInstagramTikTokXRedditLinkedInActivityStreams 2.0ScrapingData ExtractionPublic DataInfluencer MarketingSocial ListeningCreator ToolsMCPAgent SkillsAgents

Properties

Name Type Description
type string ActivityStreams object type
id string Collection permalink
name string Collection name
image object
totalItems integernull Number of items in collection
entityId string TikTok internal collection ID
attributedTo object
View JSON Schema on GitHub

JSON Schema

konbiniapi-tik-tok-collection-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-collection-schema.json",
  "title": "TikTokCollection",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "ActivityStreams object type",
      "example": "OrderedCollection"
    },
    "id": {
      "type": "string",
      "format": "uri",
      "description": "Collection permalink",
      "example": "https://www.tiktok.com/@khaby.lame/playlist/7200000000000000001"
    },
    "name": {
      "type": "string",
      "description": "Collection name",
      "example": "Best of 2025"
    },
    "image": {
      "allOf": [
        {
          "type": "object",
          "properties": {
            "type": {
              "type": "string",
              "description": "ActivityStreams object type",
              "example": "Image"
            },
            "url": {
              "type": "string",
              "format": "uri",
              "description": "Image URL",
              "example": "https://p16-sign.tiktokcdn-us.com/tos-maliva-avt-0068/avatar.jpeg"
            },
            "width": {
              "type": "integer",
              "description": "Width in pixels",
              "example": 576
            },
            "height": {
              "type": "integer",
              "description": "Height in pixels",
              "example": 1024
            }
          },
          "required": [
            "type",
            "url"
          ],
          "description": "Image resource with optional dimensions"
        },
        {
          "description": "Collection cover image"
        }
      ]
    },
    "totalItems": {
      "type": [
        "integer",
        "null"
      ],
      "description": "Number of items in collection",
      "example": 42
    },
    "entityId": {
      "type": "string",
      "description": "TikTok internal collection ID",
      "example": "7200000000000000001"
    },
    "attributedTo": {
      "allOf": [
        {
          "type": "object",
          "properties": {
            "type": {
              "type": "string",
              "description": "ActivityStreams object type",
              "example": "Person"
            },
            "id": {
              "type": "string",
              "format": "uri",
              "description": "Profile URL",
              "example": "https://www.tiktok.com/@khaby.lame"
            },
            "url": {
              "type": "string",
              "format": "uri",
              "description": "Profile URL",
              "example": "https://www.tiktok.com/@khaby.lame"
            },
            "entityId": {
              "type": "string",
              "description": "TikTok secUid",
              "example": "MS4wLjABAAAAwAg0rSzO65WQfz4RzQgGv2Xdv108BgPXhRrrmNVIHQZ9PO8-flwwRtEppYTS0OjA"
            },
            "name": {
              "type": "string",
              "description": "Display name",
              "example": "Khabane Lame"
            },
            "preferredUsername": {
              "type": "string",
              "description": "Username or handle",
              "example": "khaby.lame"
            },
            "summary": {
              "type": "string",
              "description": "Bio text",
              "example": "Just a guy who reacts"
            },
            "attachment": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "type": {
                    "type": "string",
                    "description": "ActivityStreams object type",
                    "example": "Link"
                  },
                  "href": {
                    "type": "string",
                    "format": "uri",
                    "description": "Link URL",
                    "example": "https://linktr.ee/khaby.lame"
                  },
                  "rel": {
                    "type": "string",
                    "description": "Link relation hint",
                    "example": "preferred"
                  }
                },
                "required": [
                  "type",
                  "href"
                ],
                "description": "External link"
              },
              "description": "External links in bio"
            },
            "published": {
              "type": "string",
              "format": "date-time",
              "description": "Account creation date in ISO 8601 format",
              "example": "2020-03-15T00:00:00.000Z"
            },
            "isPrivate": {
              "type": "boolean",
              "description": "Whether account is private",
              "example": false
            },
            "isVerified": {
              "type": "boolean",
              "description": "Whether account is verified",
              "example": true
            },
            "isLive": {
              "type": "boolean",
              "description": "Whether user is currently live streaming",
              "example": false
            },
            "hasLikes": {
              "type": "boolean",
              "description": "Whether user's liked videos are public",
              "example": true
            },
            "hasPlaylists": {
              "type": "boolean",
              "description": "Whether user has playlists",
              "example": true
            },
            "followerCount": {
              "type": "integer",
              "description": "Number of followers",
              "example": 160300000
            },
            "followingCount": {
              "type": "integer",
              "description": "Number of accounts followed",
              "example": 85
            },
            "language": {
              "type": "string",
              "description": "User language preference (BCP47 code)",
              "example": "en"
            },
            "likeCount": {
              "type": "integer",
              "description": "Total likes received across all content",
              "example": 2600000000
            },
            "likedCount": {
              "type": "integer",
              "description": "Number of videos the user has liked",
              "example": 5300
            },
            "mediaCount": {
              "type": "integer",
              "description": "Number of posts",
              "example": 1309
            },
            "icon": {
              "allOf": [
                {
                  "$ref": "#/components/schemas/TikTokImage"
                },
                {
                  "description": "Author avatar"
                }
              ]
            },
            "image": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "type": {
                    "type": "string",
                    "description": "ActivityStreams object type",
                    "example": "Image"
                  },
                  "url": {
                    "type": "string",
                    "format": "uri",
                    "description": "Image URL",
                    "example": "https://p16-sign.tiktokcdn-us.com/tos-maliva-avt-0068/avatar.jpeg"
                  },
                  "width": {
                    "type": "integer",
                    "description": "Width in pixels",
                    "example": 576
                  },
                  "height": {
                    "type": "integer",
                    "description": "Height in pixels",
                    "example": 1024
                  }
                },
                "required": [
                  "type",
                  "url"
                ],
                "description": "Image resource with optional dimensions"
              },
              "description": "Profile pictures in multiple sizes"
            }
          },
          "required": [
            "type",
            "id",
            "url",
            "isPrivate",
            "isVerified"
          ],
          "description": "Compact user profile for embedded contexts"
        },
        {
          "description": "Collection owner"
        }
      ]
    }
  },
  "required": [
    "type",
    "id",
    "name",
    "totalItems",
    "entityId",
    "attributedTo"
  ],
  "description": "Video collection or playlist"
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/konbiniapi-tik-tok-collection"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.