Komi · Guide

How to get Komi page

TL;DR
To get Komi page, sign up for a free Captapi key, then send one GET request to /v1/komi/page with your input. You get clean JSON back in seconds for 1 credit per call — no OAuth, scraping or platform SDKs. Komi link-in-bio → identity, socials{} (incl. website), content LINK/PRODUCT rows with price/currency. Flat 1 credit.

How to get Komi page (step by step)

  1. 1

    Get a free API key

    Create a free Captapi account (100 credits, no card) and generate an API key from the dashboard.

  2. 2

    Call the Komi Page API

    Send an authenticated GET request to /v1/komi/page with your input. No OAuth, no scraping setup.

  3. 3

    Read the JSON response

    Parse the clean JSON response. Pass cache=true for a free 24h cache hit; default is always fresh.

Code example

curl "https://api.captapi.com/v1/komi/page?url=https%3A%2F%2Fkomi.io%2Fkimkardashian" \
  -H "Authorization: Bearer capt_live_..."
# or: -H "x-api-key: capt_live_..."

What the response looks like

{
  "success": true,
  "data": {
    "platform": "komi",
    "id": "64d82830-59aa-4488-bfb0-93426971d139",
    "url": "https://komi.io/kimkardashian",
    "username": "kimkardashian",
    "handle": "kimkardashian",
    "displayName": "Kim Kardashian",
    "name": "Kim Kardashian",
    "firstName": "Kim",
    "lastName": "Kardashian",
    "avatar": "https://komi-production-assets.s3.amazonaws.com/photos/4Nd69ODJHs61_iNYPlqos.jpg",
    "linkCount": 22,
    "socials": {
      "instagram": "https://www.instagram.com/kimkardashian/",
      "tiktok": "https://www.tiktok.com/@kimkardashian",
      "youtube": "https://www.youtube.com/@KUWTK",
      "twitter": "https://twitter.com/KimKardashian",
      "facebook": "https://www.facebook.com/KimKardashian",
      "snapchat": "https://www.snapchat.com/add/kimkardashian?locale=en-GB"
    },
    "bio": "",
    "description": "",
    "links": [
      {
        "id": "6d7086df-ede4-4f8a-85e5-0fa410e60bc2",
        "url": "https://skims.social/shop-skims",
        "title": "Visit SKIMS",
        "type": "LINK",
        "order": 0,
        "visible": true,
        "thumbnail": "https://komi-production-assets.s3-accelerate.amazonaws.com/photos/x_LQCBYzoWiel0-yrAnrF.jpg",
        "moduleId": "e6ce39d2-e3df-4040-a5cc-ce016cacbc34",
        "versionId": "944094bf-f124-4b13-866a-3498c492736d"
      },
      {
        "id": "f43e198b-2fd5-45f4-80d1-389906c5c840",
        "url": "https://skims.com/products/signature-swim-triangle-bikini-top-dune-crocodile-print",
        "title": "TRIANGLE BIKINI TOP | DUNE CROCODILE",
        "type": "PRODUCT",
        "order": 0,
        "visible": false,
        "thumbnail": "https://komi-production-assets.s3-accelerate.amazonaws.com/photos/dzDiYZjZFXPE4E8-ZwnSn.png",
        "moduleId": "5c8bc46c-2d6b-4731-baf3-2f40aec1465c",
        "versionId": "944094bf-f124-4b13-866a-3498c492736d",
        "price": 44,
        "currency": "USD"
      }
    ],
    "other": []
  }
}

Billing metadata (credits charged, cache hit/miss) is returned in the X-Captapi-Credits and X-Captapi-Cache response headers.

Request parameters

NameTypeRequiredDescription
urlstring YesKomi page URL or username, e.g. https://komi.io/kimkardashian or https://kimkardashian.komi.io/. The URL platform must match this endpoint's platform. Do not pass cross-platform URLs, e.g. YouTube to TikTok, Instagram to Facebook, LinkedIn to X/Twitter, or Pinterest to Rumble.
cachebooleanNoSet true to serve from the response cache (default TTL). Default false — always fetch fresh. Prefer cacheMaxAge when you need 1d–30d freshness control. Envelope includes cached + cachedAt on hits.
cacheMaxAgestringNoMax age of a cached response: 1d, 3d, 7d, 14d, or 30d. When set, enables caching with that TTL (SC cache_max_age). Envelope: cached + cachedAt.

Frequently asked questions

What does the Komi Page API do?

The Komi Page API lets you fetch profile or page details and audience stats from a public Komi profile or page using one GET request to /v1/komi/page. It returns clean JSON — no OAuth or infrastructure setup required.

How many credits does the Komi Page API cost?

Each successful call costs 1 credit. Pass cache=true to serve from the 24h cache (0 credits on hit); default is always fresh. Hits include cached + cachedAt. Selected profile endpoints also accept cacheMaxAge=1d|3d|7d|14d|30d. Failed or empty results are never charged.

Do I need a Komi API key or OAuth?

No. A single Captapi key works across every platform Captapi supports — YouTube, TikTok, Instagram, Facebook, Twitter/X, Reddit, Threads, Bluesky, Pinterest, LinkedIn, Rumble, Spotify, Kwai, and more. We handle proxies, rate limits, retries, and authentication for you.

Is the Komi Page API suitable for production use?

Yes. It is a stable REST endpoint with predictable JSON and automatic retries. Pass cache=true to serve from the 24h cache (0 credits on hit); default is always fresh. Hits include cached + cachedAt. Selected profile endpoints also accept cacheMaxAge=1d|3d|7d|14d|30d. Use it for analytics, monitoring, and content automation.

Ready to get Komi page?

Start free with 100 credits — no credit card required.

Get your free API key