SoundCloud

SoundCloud

Artist / Artist Tracks / Track

per_call

Resolves a SoundCloud handle or URL into an artist record (bio, location, follower and track counts, verification), the artist's published tracks with cursor pagination, or a single track's stats including plays, likes, reposts, comments, duration, genre, tags and artwork. Built for emerging-artist discovery, A&R scouting and independent-release tracking.

Endpoint

GET /v1/soundcloud/artist-tracks-track

Price

$1.50

per 1,000 calls · $0.0015 per call

Cost per call

1 credit

Failed calls never charged

Parameters

handle
optional
string

SoundCloud artist handle. Required unless `url` is supplied.

url
optional
string

Artist or track URL. Required unless `handle` is supplied.

cursor
optional
string

Pagination cursor returned by a previous response.

Example request

Sandbox calls return deterministic sample data in the live payload shape.

curl
curl "https://api.fastfetchz.com/v1/soundcloud/artist-tracks-track?handle=flume" \
  -H "X-API-Key: $FASTFETCHZ_KEY"

Example response

200 application/json
{
  "success": true,
  "service": {
    "platform": "SoundCloud",
    "name": "Artist / Artist Tracks / Track",
    "slug": "artist-tracks-track"
  },
  "credits_charged": 1,
  "credits_remaining": 99,
  "latency_ms": 214,
  "data": {
    "artist": {
      "id": 1020337,
      "handle": "flume",
      "name": "Flume",
      "verified": true,
      "city": "Sydney",
      "country": "Australia",
      "description": "Sandbox artist description.",
      "followers_count": 2411908,
      "track_count": 148,
      "avatar_url": "https://cdn.example.com/soundcloud/flume.jpg",
      "permalink_url": "https://soundcloud.com/flume"
    },
    "tracks": [
      {
        "id": 289113452,
        "title": "Never Be Like You",
        "genre": "Electronic",
        "duration_ms": 233000,
        "playback_count": 92401338,
        "likes_count": 1204881,
        "comment_count": 8412,
        "reposts_count": 41902,
        "artwork_url": "https://cdn.example.com/soundcloud/track/289113452.jpg",
        "created_at": "2020-11-24T10:38:00.146Z",
        "permalink_url": "https://soundcloud.com/flume/never-be-like-you"
      }
    ],
    "paging": {
      "has_more": true,
      "next_cursor": "cursor_20"
    },
    "requested": "nasa"
  }
}

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.