Linkbio · Guide

How to get Linkbio page

TL;DR
To get Linkbio page, sign up for a free Captapi key, then send one GET request to /v1/linkbio/page with your input. You get clean JSON back in seconds for 1 credit per call — no OAuth, scraping or platform SDKs. lnk.bio → id, socials{} (SC often null), titled links[], website/email/whatsapp, other[]. Flat 1 credit.

How to get Linkbio 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 Linkbio Page API

    Send an authenticated GET request to /v1/linkbio/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/linkbio/page?url=https%3A%2F%2Flnk.bio%2Fcharlidamelio" \
  -H "Authorization: Bearer capt_live_..."
# or: -H "x-api-key: capt_live_..."

What the response looks like

{
  "success": true,
  "data": {
    "platform": "linkbio",
    "id": "-1344625",
    "url": "https://lnk.bio/charlidamelio",
    "username": "charlidamelio",
    "handle": "charlidamelio",
    "avatar": "https://s3.us-west-2.amazonaws.com/cdn.lnk.bio/profilepics/-1344625_20220123667.jpg",
    "website": "https://www.charlidamelio.com",
    "linkCount": 15,
    "socials": {
      "facebook": "https://facebook.com/thecharlidamelio",
      "twitter": "https://twitter.com/charlidamelio",
      "instagram": "https://instagram.com/charlidamelio",
      "triller": "https://triller.co/m/@charlidamelio",
      "tiktok": "https://tiktok.com/@charlidamelio",
      "youtube": "https://youtube.com/c/charlidamelio",
      "snapchat": "https://www.snapchat.com/add/damelioc",
      "website": "https://www.charlidamelio.com"
    },
    "links": [
      {
        "url": "https://www.charlidamelio.com",
        "title": "official website of charli d'amelio",
        "id": "61ec9244a0fa03.74794466",
        "type": "TYPE_BUTTON"
      },
      {
        "url": "https://www.hollisterco.com/shop/us/social-tourist/shop-all?%20cmp=SOC:SPR21:ST:D:US:Brand:X:BioINF:PInf:X:X:CD:STHP-ST:x:Charli%20IG",
        "title": "shop social tourist january 2022 drop",
        "id": "2733218",
        "type": "TYPE_BIOLINK"
      }
    ],
    "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 YesLinkbio (lnk.bio) page URL or username, e.g. https://lnk.bio/charlidamelio. 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 Linkbio Page API do?

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

How many credits does the Linkbio 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 Linkbio 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 Linkbio 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 Linkbio page?

Start free with 100 credits — no credit card required.

Get your free API key