honesthook

SoundCloud API

SoundCloud API for public profile data

One endpoint for public SoundCloud profiles — followers, following, track count, verified. Read from the hydration block, where the field next door would turn a large account into an empty one. 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/soundcloud/profile?handle=edsheeran"
{
  "success": true,
  "platform": "soundcloud",
  "endpoint": "soundcloud/profile",
  "data": {
    "author": {
      "id": "3685019",
      "handle": "edsheeran",
      "name": "Ed Sheeran",
      "followers": 2977786,
      "following": 0,
      "posts_count": 466,
      "verified": true,
      "is_private": null
    }
  },
  "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.

The number comes from the __sc_hydration block, which is real embedded JSON with seven counters in it, one of them right. Keeping the right one selected when SoundCloud reshuffles that block is what you are handing over.

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 ↑