# lnk.bio Page API (https://www.socialcrawl.dev/platforms/linkbio/page) > Returns data from a Linkbio page including display name, bio, avatar, and list of links with titles and URLs. TL;DR: `GET /v1/linkbio/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 Linkbio page | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/linkbio/page?url=https%3A%2F%2Flnk.bio%2Fexample" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get a Linkbio page's data? Send a GET request to /v1/linkbio/page with the full lnk.bio 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/linkbio/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, destination URL, and any extras Linkbio exposes (video embeds, audio previews, product cards, social icons). ### What link types appear in the Linkbio Page API response? Every link the creator has added — external URLs, embedded videos, Spotify tracks, product listings, social profile shortcuts, and email or phone links. Each one comes back with its title and destination URL in the links array. ### Can I count how many links a Linkbio 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 Linkbio Page API? Most requests return JSON within 1–3 seconds. The endpoint uses the profile cache category, so repeat requests for the same lnk.bio URL return from cache in under 200ms. See the full lnk.bio API: https://www.socialcrawl.dev/platforms/linkbio ## 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 does SocialCrawl return Linkbio page data? - What does the SocialCrawl Linkbio Page API return?