Skip to main content
GET
/
api
/
v1
/
sounds
/
library
Browse the commercial sound library
curl --request GET \
  --url https://full-tiktok-api.p.rapidapi.com/api/v1/sounds/library \
  --header 'x-rapidapi-key: <api-key>'
{
  "meta": {
    "request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "timestamp": "2025-03-12T14:32:01.498Z",
    "cached": false,
    "version": "2025-01"
  },
  "data": [
    {
      "sound_id": "7016547803243022337",
      "title": "Relationship",
      "author": "Young Thug",
      "duration_seconds": 60,
      "is_original": false,
      "is_copyrighted": true,
      "posts_count": 8700000,
      "cover_url": "https://p16-sign.tiktokcdn-us.com/...",
      "play_url": "https://sf19-ies-music-va.tiktokcdn.com/..."
    }
  ],
  "pagination": {
    "page": 1,
    "has_more": true,
    "total": 519208
  },
  "error": {
    "code": "NOT_FOUND",
    "message": "The requested resource was not found.",
    "details": null
  }
}
Returns a paginated list of commercially-licensed sounds from TikTok’s sound library. Sounds can be sorted by hottest (default) or newest. Pagination uses page numbers rather than cursors.

Authorizations

x-rapidapi-key
string
header
required

Your RapidAPI subscription key. Injected automatically by the RapidAPI gateway in production.

Query Parameters

page
integer
default:1

Page number (1-based)

Required range: x >= 1
count
integer
default:10

Number of sounds per page (1–10)

Required range: 1 <= x <= 10
sort
enum<string>
default:hot

Sort order: hot (most popular, default) or new (most recently added)

Available options:
hot,
new

Response

Success

meta
object

Response metadata present in every API response

data
object[]
pagination
object

Page-number pagination info (used by sounds/library)

error
object

Error details. Present only when the request failed; null on success.