# Linktree Page API (https://www.socialcrawl.dev/platforms/linktree/page) > Returns data from a Linktree page including the user's display name, bio, avatar, and list of links with titles and URLs. TL;DR: `GET /v1/linktree/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 Linktree page | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/linktree/page?url=https%3A%2F%2Flinktr.ee%2Fcharlidamelio" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get a Linktree page's data? Send a GET request to /v1/linktree/page with the full linktr.ee 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/linktree/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 Linktree exposes (video embeds, audio previews, product cards, social icons). ### What link types appear in the Linktree 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 Linktree 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 Linktree Page API? Most requests return JSON within 1–3 seconds. The endpoint uses the profile cache category, so repeat requests for the same linktr.ee URL come back noticeably faster from cache. See the full Linktree API: https://www.socialcrawl.dev/platforms/linktree ## 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 Linktree page data with one API call - What does the SocialCrawl Linktree Page API return?