Skip to main content
KonbiniAPI is a REST API that provides a unified interface to Instagram and TikTok data, normalized into clean JSON based on ActivityStreams 2.0 — an open W3C standard for representing social data. Instead of dealing with different response structures, field names, and conventions for each platform, you get a single, predictable, and consistent format across all endpoints.

Why ActivityStreams 2.0

ActivityStreams 2.0 is the same standard behind the Fediverse and protocols like ActivityPub. It defines a common vocabulary for social objects — users, posts, videos, comments, collections — that works across platforms. Every response from KonbiniAPI includes:
{
  "@context": [
    "https://www.w3.org/ns/activitystreams#",
    "https://konbiniapi.com/ns/social#"
  ],
  "type": "OrderedCollectionPage",
  "orderedItems": [...]
}
This means your code works the same whether you’re fetching TikTok videos or Instagram posts.

Supported platforms

Base URL

https://api.konbiniapi.com
All endpoints are versioned under /v1/.

Next steps