honesthook

Linktree API

Linktree API for the links in a bio

One endpoint for a public Linktree — the list of links, in the order the owner chose. Linktree publishes no follower count, and this returns the list instead of pretending otherwise. Same key and same response shape as nine other networks.

Get a free key — 1,000 credits a month, no card

or get a key with just your email

Free, no card. One key per address — we store your email to attach the key to it and to warn you if something breaks.

One call. Real response.

curl -H "Authorization: Bearer $HH_KEY" \
  "https://honesthook.com/api/v1/linktree/profile?handle=comedycentral"
{
  "success": true,
  "platform": "linktree",
  "endpoint": "linktree/profile",
  "data": {
    "author": {
      "id": "1847312",
      "handle": "comedycentral",
      "name": "Comedy Central",
      "followers": null,
      "following": null,
      "posts_count": null,
      "verified": null,
      "is_private": null
    },
    "items": [
      { "title": "Stream Comedy Central Shows on Paramount+", "url": "http://www.paramountplus.com/", "position": 1 },
      { "title": "Tales From The Trip Merch", "url": "https://comedycentralstore.com/collections/comedy-central", "position": 2 },
      { "title": "Comedy Central Merch Store", "url": "https://bit.ly/33Zo0Lp", "position": 3 },
      { "title": "Comedy Central YouTube", "url": "https://www.youtube.com/comedycentral", "position": 4 },
      { "title": "Animated YouTube", "url": "https://www.youtube.com/channel/UCqp9YsX6sR7i93CY4yGsAow", "position": 5 },
      { "title": "Stand-Up YouTube", "url": "https://www.youtube.com/standup", "position": 6 },
      { "title": "cc.com", "url": "http://www.cc.com/", "position": 7 }
    ]
  },
  "error": null,
  "cached": false
}

Recorded response, captured 27 Sep 2026. A live call returns the value at the moment you ask. The same envelope comes back from every other platform — only platform and endpoint change.

What this endpoint does not return.

A field we cannot read comes back null, never 0. A zero would be a claim about the account; null is a fact about our collection.

The part you are handing over.

Linktree is a page, not an API, and the page changes shape without notice. What you are handing over is reading the list correctly every time the layout moves, and keeping the order the owner chose.

Pricing

1,000 credits a month, free, renewing — no card. After that, US$ 9 per month for 5,000 credits. A profile call costs 1 credit, and a call that finds nothing costs nothing.

The free tier needs no account — the form at the top of this page is all of it. Signing in is for paying, and for seeing what a key has left. Paid plans renew until cancelled and a charge can be refunded in full within 7 days: terms · privacy.

Back to the free key ↑