Public profile details
Retrieve published names, bios, image paths, and available profile counts.
Retrieve public Linkme profiles with grouped contact details, social links, and page metadata. Keep the structure that makes those connections useful.
Live private service
WHAT’S ON THE MAP
Retrieve published names, bios, image paths, and available profile counts.
Preserve contact and social link groups, source order, and published destination values.
Read published theme settings and section visibility alongside profile data.
YOUR FIRST REQUEST
Start with a local worker and a service key. The examples use the current Linkme contract.
/v1/linkmeAccepts one public Linkme profile URL. The result is nested under profile, matching the reference API. Image paths and linkValue strings are returned as published; no destination is visited.
Request and response fields# Local worker · use your own service key
export BASE_URL="http://localhost:3009"
curl --get "$BASE_URL/v1/linkme" \
-H "x-api-key: $LINKME_API_KEY" \
--data-urlencode "url=https://link.me/example"const baseUrl = "http://localhost:3009";
const url = new URL('/v1/linkme', baseUrl);
url.searchParams.set("url", "https://link.me/example");
const response = await fetch(url, {
method: 'GET',
headers: {
'x-api-key': process.env.LINKME_API_KEY
}
});
const data = await response.json();
console.log(data);/v1/linkmeJSON responseExamples target local workers. Use the origin and credentials supplied for your service.
TAKE IT SOMEWHERE USEFUL
Bring public creator and business details into your existing database.
Keep linked accounts and published contact groups together in discovery tools.
Index supported public profile fields for your own search and research workflows.
A nested profile object with supported public fields, grouped contact and web links, and published page settings. Source order and unknown values are preserved.
No. Link destinations are returned as data. Private, locked, or age-gated profiles are rejected, and gated link records are omitted with partial coverage.
The reference includes the local worker origin, service-key header, and setup details.
No. ScrapeAtlas is independent and is not affiliated with Linkme. This endpoint retrieves supported publicly available data.