SocialCrawl

Komi

Read a Komi link-in-bio page. Display name, bio, avatar, and every outbound link with its title and destination

Komi is a link-in-bio service aimed at the higher end of the creator market, which shows in who uses it: pages tend to belong to talent with real commercial operations behind them.

Base URL: /v1/komi/...

Komi puts the handle in a subdomain ({handle}.komi.io) rather than a path, so the url you pass looks like https://kimkardashian.komi.io/, not https://komi.io/kimkardashian.

Quickstart

1. Read the page

cURL
curl "https://www.socialcrawl.dev/v1/komi/page?url=https://kimkardashian.komi.io/" \
  -H "x-api-key: YOUR_API_KEY"

The outbound social links turn one handle into the creator's full account set. Feed each handle into its platform's profile endpoint.

cURL
curl "https://www.socialcrawl.dev/v1/instagram/profile?handle=kimkardashian" \
  -H "x-api-key: YOUR_API_KEY"

Read a page

EndpointCreditsWhat it returnsKey parameters
GET /v1/komi/page1Display name, bio, avatar, and every link on the page with its title and destinationurl (the full page URL)

The link list is the valuable part. It is a creator's own declaration of where their audience should go next, which usually includes the shops they sell through, the affiliate networks they run, the newsletter they own, and the social accounts they actually maintain rather than the ones they merely registered.

Two ways that is used in practice. For creator vetting, the destinations reveal commercial relationships that a profile bio does not: an affiliate subdomain or a brand-specific landing page is a disclosed partnership. For cross-platform resolution, the outbound social links turn one handle into the creator's full account set.

All endpoints

1 endpoint available.

EndpointPathCredit Tier
Get Komi page/v1/komi/pagestandard (1cr)

Platform notes

  • Destinations are as-published, not resolved. A link that points at a shortener or a tracking redirect comes back as that URL. Follow it yourself if you need the final destination, and expect UTM parameters to survive.
  • One page per call, and no discovery. There is no way to search Komi pages or list a creator's page from their social handle. You need the page URL. It usually comes from a social profile's bio link (author.ext.bio_link where a platform exposes one) or from the bio text itself.
  • Each link-in-bio service has its own endpoint. Linktree, lnk.bio, Linkme and Pillar are separate paths that return the same shape, so one parser handles all of them. Only the base path changes.
  • A page with no links returns an empty link list rather than an error.
  • The url must be the public page URL, including the scheme.

Next steps

On this page