Linkme

Profile

per_call

Resolves a link.me profile URL into username, display name, bio, profile image, theme and customization settings, and every social or outbound link on the page. Use it to complete creator records and find the real destinations behind a link-in-bio page.

Endpoint

GET /v1/linkme/profile

Price

$1.50

per 1,000 calls · $0.0015 per call

Cost per call

1 credit

Failed calls never charged

Parameters

url
required
string

The public link.me profile URL to resolve.

cache_max_age
optional
enum

Serve 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/linkme/profile?url=https%3A%2F%2Flink.me%2Fzendaya" \
  -H "X-API-Key: $FASTFETCHZ_KEY"

Example response

200 application/json
{
  "success": true,
  "service": {
    "platform": "Linkme",
    "name": "Profile",
    "slug": "profile"
  },
  "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/linkme/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=329118",
          "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/linkme/nasa/product-1.jpg"
        }
      ],
      "cached_at": "2026-08-25T10:35:28.114Z"
    }
  }
}

Error codes

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.