# Komi Page API (https://www.socialcrawl.dev/platforms/komi/page) > Returns data from a Komi page including display name, bio, avatar, and list of links with titles and URLs. TL;DR: `GET /v1/komi/page` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `url` | yes | Full URL of the Komi page | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/komi/page?url=https%3A%2F%2Fkimkardashian.komi.io%2F" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I use the Komi Page API? Send a GET request to /v1/komi/page with the full komi.io URL in the url parameter. SocialCrawl responds with a JSON object containing the creator's display name, bio, avatar URL, and every link on the page. ### What fields does GET /v1/komi/page return? The response includes the creator's display name, bio text, avatar image URL, and a links array where each item has its title and destination URL in the order the creator set them on the Komi page. ### What link types appear in the Komi Page API response? Every link the creator has added to their Komi page — external URLs, product and class listings, social profile shortcuts, email or booking links. Each one comes back with its title and destination URL in the links array. ### Can I count how many links a Komi creator has? Yes. The links array contains one entry per link on the page, so you can pull the full count with links.length. The response preserves the order the creator set, so you can also measure which link sits at the top. ### How fast is the Komi Page API? Most requests return JSON within 1–3 seconds. The endpoint uses the profile cache category, so repeat requests for the same komi.io URL come back noticeably faster from cache. See the full Komi API: https://www.socialcrawl.dev/platforms/komi ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to get Komi page data with one API call - What does the SocialCrawl Komi Page API return?