API Reference

SoundCloud endpoints

Profile and track metrics. Play counts are returned as views, so the field names match every other platform in the catalogue.

All 2 endpoints below take a single url parameter and return the same field vocabulary used across every platform. A full object costs 2 credits; a single field costs 1.
GET /api/v1/soundcloud/user
2 credits cache 1m

SoundCloud profile

Follower, following, track and like counts for a SoundCloud account.

Parameters

url required
Example: https://soundcloud.com/username
field optional
Return a single value for 1 credit instead of 2.

Fields

slug · userId · name · followers · following · tracks · likes · verified

Example request

curl -H "Authorization: Bearer $TUBESTAT_KEY" \
  "https://tubestat.co/api/v1/soundcloud/user?url=https%3A%2F%2Fsoundcloud.com%2Fusername"
GET /api/v1/soundcloud/track
2 credits cache 1m

SoundCloud track

Play, like, comment and repost counts for a SoundCloud track.

Parameters

url required
Example: https://soundcloud.com/username/track-name
field optional
Return a single value for 1 credit instead of 2.

Fields

slug · trackId · title · views · likes · comments · reposts · durationMs · type · authorId

Example request

curl -H "Authorization: Bearer $TUBESTAT_KEY" \
  "https://tubestat.co/api/v1/soundcloud/track?url=https%3A%2F%2Fsoundcloud.com%2Fusername%2Ftrack-name"