Linktree
Page
per_call
Turns a Linktree URL into structured data — username, display name, avatar, bio, theme, every link with its title, destination URL and position, and the social accounts connected to the page. A fast way to enrich creator records with real destinations for influencer discovery and brand-partnership research.
Endpoint
GET /v1/linktree/page
Price
$1.50
per 1,000 calls · $0.0015 per call
Cost per call
1 credit
Failed calls never charged
Parameters
url
required
stringThe public Linktree page URL to resolve.
cache_max_age
optional
enumServe a cached snapshot if one exists within this age window.
One of: 1d, 3d, 7d, 14d, 30d
Example request
Sandbox calls return deterministic sample data in the live payload shape.
curl
curl "https://api.fastfetchz.com/v1/linktree/page?url=https%3A%2F%2Flinktr.ee%2Femmachamberlain" \
-H "X-API-Key: $FASTFETCHZ_KEY"Example response
200 application/json
{
"success": true,
"service": {
"platform": "Linktree",
"name": "Page",
"slug": "page"
},
"credits_charged": 1,
"credits_remaining": 99,
"latency_ms": 214,
"data": {
"page": {
"username": "nasa",
"display_name": "Nasa",
"bio": "Creator page — sandbox bio text.",
"avatar_url": "https://cdn.example.com/linktree/nasa.jpg",
"email": "hello@nasa.example.com",
"website": "https://nasa.example.com",
"theme": "midnight",
"page_url": "nasa",
"socials": [
{
"platform": "instagram",
"url": "https://instagram.com/nasa"
},
{
"platform": "tiktok",
"url": "https://tiktok.com/@nasa"
},
{
"platform": "youtube",
"url": "https://youtube.com/@nasa"
}
],
"links": [
{
"position": 1,
"title": "Latest video",
"url": "https://youtube.com/watch?v=375744",
"clicks_tracked": true
},
{
"position": 2,
"title": "Shop my picks",
"url": "https://www.amazon.com/shop/nasa",
"clicks_tracked": true
},
{
"position": 3,
"title": "Newsletter",
"url": "https://nasa.example.com/newsletter",
"clicks_tracked": false
}
],
"products": [
{
"title": "1:1 coaching call",
"price": {
"amount": 149,
"currency": "USD"
},
"description": "30 minute session.",
"thumbnail_url": "https://cdn.example.com/linktree/nasa/product-1.jpg"
}
],
"cached_at": "2026-08-25T10:35:07.480Z"
}
}
}Error codes
StatusCodeMeaning
401invalid_api_keyMissing or unrecognized X-API-Key header. No credits are charged.
402insufficient_creditsYour balance is below the cost of the call. Top up to continue.
403account_suspended / key_revokedThe account is suspended or the key was revoked.
429rate_limitedThe key exceeded its monthly cap or the burst limit. Retry later.
500upstream_errorUnexpected failure while fulfilling the request. Not charged.