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