The person behind the links
Retrieve public usernames, bios, profile images, and available category metadata.
Turn a public Linktree page into structured profile data, published links, and social accounts. Ready for your application, without maintaining a page parser.
Live private service
WHAT’S ON THE MAP
Retrieve public usernames, bios, profile images, and available category metadata.
Keep link titles, destinations, types, and group relationships together.
Extract published social icons, including Instagram, TikTok, YouTube, and more.
YOUR FIRST REQUEST
Start with a local worker and a service key. The examples use the current Linktree contract.
/v1/linktreeAccepts one HTTPS linktr.ee profile URL. Tracking parameters and fragments are removed. Custom domains, duplicate parameters, and cache_max_age are unsupported.
Request and response fields# Local worker · use your own service key
export BASE_URL="http://localhost:3007"
curl --get "$BASE_URL/v1/linktree" \
-H "x-api-key: $LINKTREE_API_KEY" \
--data-urlencode "url=https://linktr.ee/example"const baseUrl = "http://localhost:3007";
const url = new URL('/v1/linktree', baseUrl);
url.searchParams.set("url", "https://linktr.ee/example");
const response = await fetch(url, {
method: 'GET',
headers: {
'x-api-key': process.env.LINKTREE_API_KEY
}
});
const data = await response.json();
console.log(data);/v1/linktreeJSON responseExamples target local workers. Use the origin and credentials supplied for your service.
TAKE IT SOMEWHERE USEFUL
Bring public bios, images, and linked social accounts into your creator database.
Find a creator’s published website, storefront, music, and other destinations.
Organize the links published on public profiles into your own discovery experience.
Public profile metadata, ordered link records, group relationships, and published social icons. Missing values and omitted fields are identified in the response.
No. It retrieves the supported data embedded in the public Linktree page. Private analytics, follower counts, destination pages, and media feeds are outside this endpoint’s coverage.
Use the local worker or an operator-provided private origin with a dedicated service key. There is no public signup or customer key portal yet.
No. ScrapeAtlas is independent and is not affiliated with Linktree. This endpoint retrieves supported publicly available data.