Download OpenAPI specification:
API for YourMusic streaming service. Provides endpoints for user management, music catalog access, and streaming.
Client credentials token endpoint accepting JSON (preferred) or form data.
| grant_type required | string Value: "client_credentials" |
| client_id required | string |
| client_secret required | string |
grant_type=client_credentials&client_id=your-client-id&client_secret=your-client-secret
{- "access_token": "string",
- "token_type": "Bearer",
- "expires_in": 0
}Issues a UDT for the specified user/device using client credentials.
| user_id required | string <uuid> ID of the end user for whom the UDT is issued. |
| deviceId required | string <uuid> Unique identifier of the device the UDT is bound to. |
{- "deviceId": "a9b66a51-3cb6-4e66-bb94-675e83380fe5"
}{- "token_type": "Bearer",
- "expires_in": 600,
- "token": "token-string"
}{- "data": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "first_name": "string",
- "last_name": "string",
- "email": "user@example.com",
- "date_of_birth": "2019-08-24",
- "status": "SUBSCRIBED",
- "subscription_ends_at": "2019-08-24T14:15:22Z",
- "pm_type": "string",
- "pm_last_four": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
], - "links": { },
- "meta": { }
}Creates a new user.
| first_name required | string |
| last_name required | string |
| email required | string <email> |
| date_of_birth required | string <date> |
{- "first_name": "string",
- "last_name": "string",
- "email": "user@example.com",
- "date_of_birth": "2019-08-24"
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "first_name": "string",
- "last_name": "string",
- "email": "user@example.com",
- "date_of_birth": "2019-08-24",
- "status": "SUBSCRIBED",
- "subscription_ends_at": "2019-08-24T14:15:22Z",
- "pm_type": "string",
- "pm_last_four": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Returns details of a specific user.
| user_id required | string <uuid> ID of the user. |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "first_name": "string",
- "last_name": "string",
- "email": "user@example.com",
- "date_of_birth": "2019-08-24",
- "status": "SUBSCRIBED",
- "subscription_ends_at": "2019-08-24T14:15:22Z",
- "pm_type": "string",
- "pm_last_four": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Updates details of a specific user.
| user_id required | string <uuid> ID of the user. |
| first_name | string |
| last_name | string |
string <email> | |
| date_of_birth | string <date> |
{- "first_name": "string",
- "last_name": "string",
- "email": "user@example.com",
- "date_of_birth": "2019-08-24"
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "first_name": "string",
- "last_name": "string",
- "email": "user@example.com",
- "date_of_birth": "2019-08-24",
- "status": "SUBSCRIBED",
- "subscription_ends_at": "2019-08-24T14:15:22Z",
- "pm_type": "string",
- "pm_last_four": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Issues a UDT for the specified user/device using client credentials.
| user_id required | string <uuid> ID of the end user for whom the UDT is issued. |
| deviceId required | string <uuid> Unique identifier of the device the UDT is bound to. |
{- "deviceId": "a9b66a51-3cb6-4e66-bb94-675e83380fe5"
}{- "token_type": "Bearer",
- "expires_in": 600,
- "token": "token-string"
}Sends a one-time verification code to the given email address. If the address is valid, a code is sent; the response does not reveal whether the address exists. Rate limits apply per IP (throttle) and per email (min interval between sends, max sends per hour).
| tenant required | string <= 255 characters Tenant slug that scopes OTP issuance and verification. |
| email required | string <email> <= 255 characters Email address to send the one-time code to. |
| locale | string Enum: "en" "nl" "fr" Preferred language for the OTP email (en, nl, fr). Defaults to en if omitted. |
{- "tenant": "acme",
- "email": "user@example.com",
- "locale": "en"
}{- "message": "If that email address is valid, a verification code has been sent."
}Verifies an email OTP in a tenant context and returns a user session. Existing users receive access and refresh tokens. If no user exists for that tenant/email, an onboarding token is returned.
| tenant required | string <= 255 characters |
| email required | string <email> <= 255 characters |
| code required | string <= 32 characters |
| device_id required | string <uuid> |
{- "tenant": "acme",
- "email": "user@example.com",
- "code": "12345",
- "device_id": "550e8400-e29b-41d4-a716-446655440000"
}{- "token_type": "Bearer",
- "access_token": "string",
- "expires_in": 3600,
- "refresh_token": "string",
- "refresh_expires_in": 2592000,
- "user": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "tenant_id": "34f5c98e-f430-457b-a812-92637d0c6fd0",
- "email": "user@example.com",
- "first_name": "string",
- "last_name": "string",
- "status": "SUBSCRIBED",
- "date_of_birth": "2019-08-24"
}
}Consumes a one-time onboarding token from email OTP authentication and creates the user (or reuses existing) and issues a session.
| onboarding_token required | string |
| first_name required | string <= 255 characters |
| last_name required | string <= 255 characters |
| date_of_birth required | string <date> |
{- "onboarding_token": "plain-token-from-authenticate-response",
- "first_name": "Jane",
- "last_name": "Doe",
- "date_of_birth": "1990-01-15"
}{- "token_type": "Bearer",
- "access_token": "string",
- "expires_in": 3600,
- "refresh_token": "string",
- "refresh_expires_in": 2592000,
- "user": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "tenant_id": "34f5c98e-f430-457b-a812-92637d0c6fd0",
- "email": "user@example.com",
- "first_name": "string",
- "last_name": "string",
- "status": "SUBSCRIBED",
- "date_of_birth": "2019-08-24"
}
}Exchanges a valid refresh token for a new access token and a new refresh token. The previous refresh token can no longer be used.
| refresh_token required | string <= 512 characters |
{- "refresh_token": "plain-refresh-token-from-authenticate-or-previous-refresh"
}{- "token_type": "Bearer",
- "access_token": "string",
- "expires_in": 3600,
- "refresh_token": "string",
- "refresh_expires_in": 2592000,
- "user": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "tenant_id": "34f5c98e-f430-457b-a812-92637d0c6fd0",
- "email": "user@example.com",
- "first_name": "string",
- "last_name": "string",
- "status": "SUBSCRIBED",
- "date_of_birth": "2019-08-24"
}
}Ends the session for the given refresh token. Returns 204 with no body. Safe to call with an invalid or already-used token.
| refresh_token required | string <= 512 characters |
{- "refresh_token": "plain-refresh-token-to-revoke"
}{- "message": "The given data was invalid.",
- "errors": {
- "refresh_token": [
- "The refresh token field is required."
]
}
}Returns profile data for the caller authenticated with a UDT.
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "first_name": "string",
- "last_name": "string",
- "email": "user@example.com",
- "date_of_birth": "2019-08-24",
- "status": "SUBSCRIBED",
- "subscription_ends_at": "2019-08-24T14:15:22Z",
- "pm_type": "string",
- "pm_last_four": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Updates editable profile fields for the caller authenticated with a UDT.
| first_name | string |
| last_name | string |
| date_of_birth | string <date> |
{- "first_name": "string",
- "last_name": "string",
- "date_of_birth": "2019-08-24"
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "first_name": "string",
- "last_name": "string",
- "email": "user@example.com",
- "date_of_birth": "2019-08-24",
- "status": "SUBSCRIBED",
- "subscription_ends_at": "2019-08-24T14:15:22Z",
- "pm_type": "string",
- "pm_last_four": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Creates a new Stripe Checkout session for a subscription product. Optionally accepts custom redirect URLs that must match configured allowed patterns.
| product_slug required | string Slug of the subscription product to checkout |
| success_url | string <uri> Optional custom redirect URL for successful payment. Must match one of the configured allowed redirect URL patterns. If not provided, the default success_url is used. |
| cancel_url | string <uri> Optional custom redirect URL for cancelled payment. Must match one of the configured allowed redirect URL patterns. If not provided, the default cancel_url is used. |
{- "product_slug": "basic",
}{
}Composed home page. Auth optional; guests send X-Tenant (slug), authenticated use user's tenant.
Returns the composed home page. Authentication is optional. Authenticated — tenant is derived from the user. Guest — X-Tenant header (tenant slug) is required. If Authorization is present but token is invalid or expired, returns 401 INVALID_AUTH_TOKEN.
| X-Tenant | string Example: acme-records Tenant slug (e.g. acme-records). Required when unauthenticated; ignored when authenticated. |
{- "page": {
- "id": "home",
- "schema_version": 1,
- "revision": 3,
- "generated_at": "2026-03-10T12:00:00.000000Z"
}, - "modules": [
- {
- "id": "featured-playlists",
- "type": "playlist_carousel",
- "layout": "horizontal_scroll",
- "name_key": "home.featured_playlists",
- "name_params": null,
- "actions": {
- "see_all": null
}, - "content_source": {
- "strategy": "editorial_manual",
- "strategy_version": "1",
- "execution_mode": null
}, - "items": [
- {
- "id": "550e8400-e29b-41d4-a716-446655440001",
- "type": "playlist",
- "name": "Summer Hits",
- "track_id": "660e8400-e29b-41d4-a716-446655440001",
- "metadata": { }
}, - {
- "id": "550e8400-e29b-41d4-a716-446655440002",
- "type": "playlist",
- "name": "Chill Vibes",
- "artwork_url": null,
- "track_id": null,
- "stream_url": null,
- "metadata": { }
}
]
}, - {
- "id": "continue-listening",
- "type": "continue_listening",
- "layout": "list",
- "name_key": "home.continue_listening",
- "name_params": null,
- "actions": {
- "see_all": null
}, - "content_source": {
- "strategy": "continue_listening",
- "strategy_version": "1",
- "execution_mode": null
}
}
]
}Returns a listing of playlists matching the given keyword. Includes owned and public playlists.
| keyword required | string Keyword to match against playlist name. |
{- "data": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "tenant_id": "34f5c98e-f430-457b-a812-92637d0c6fd0",
- "user_id": "a169451c-8525-4352-b8ca-070dd449a1a5",
- "playlist_name": "string",
- "public": true,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
], - "links": {
- "first": "string",
- "last": "string",
- "prev": "string",
- "next": "string"
}, - "meta": {
- "current_page": 0,
- "from": 0,
- "last_page": 0,
- "path": "string",
- "per_page": 0,
- "to": 0,
- "total": 0
}
}[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "tenant_id": "34f5c98e-f430-457b-a812-92637d0c6fd0",
- "user_id": "a169451c-8525-4352-b8ca-070dd449a1a5",
- "playlist_name": "string",
- "public": true,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
]Creates a new playlist for the user.
| playlist_name required | string |
| public | boolean |
{- "playlist_name": "string",
- "public": true
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "tenant_id": "34f5c98e-f430-457b-a812-92637d0c6fd0",
- "user_id": "a169451c-8525-4352-b8ca-070dd449a1a5",
- "playlist_name": "string",
- "public": true,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Returns details of a specific playlist.
| playlist_id required | string <uuid> ID of the playlist. |
| with | string Value: "tracks" Relationships to include in the response. |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "tenant_id": "34f5c98e-f430-457b-a812-92637d0c6fd0",
- "user_id": "a169451c-8525-4352-b8ca-070dd449a1a5",
- "playlist_name": "string",
- "public": true,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Updates details of an owned playlist.
| playlist_id required | string <uuid> ID of the playlist. |
| playlist_name | string |
| public | boolean |
{- "playlist_name": "string",
- "public": true
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "tenant_id": "34f5c98e-f430-457b-a812-92637d0c6fd0",
- "user_id": "a169451c-8525-4352-b8ca-070dd449a1a5",
- "playlist_name": "string",
- "public": true,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Returns tracks for a specific playlist.
| playlist_id required | string <uuid> ID of the playlist. |
[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "playlist_id": "4a089bd6-aad8-455a-b371-0f37773c35d2",
- "track_id": "string",
- "order": 0,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
]Adds a single track to the end of the playlist.
| playlist_id required | string <uuid> ID of the playlist. |
| track_id required | string ID of the track to add. |
{- "track_id": "string"
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "playlist_id": "4a089bd6-aad8-455a-b371-0f37773c35d2",
- "track_id": "string",
- "order": 0,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Replaces all tracks in the playlist with the provided set.
| playlist_id required | string <uuid> ID of the playlist. |
required | Array of objects |
{- "tracks": [
- {
- "track_id": "string",
- "order": 0
}
]
}[- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "playlist_id": "4a089bd6-aad8-455a-b371-0f37773c35d2",
- "track_id": "string",
- "order": 0,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
]Reorders a track and shifts other tracks accordingly.
| playlist_id required | string <uuid> |
| playlistTrackId required | string <uuid> |
| order required | integer >= 1 |
{- "order": 1
}{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "playlist_id": "4a089bd6-aad8-455a-b371-0f37773c35d2",
- "track_id": "string",
- "order": 0,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}Search for artists using the aggregator service.
| q required | string Search terms |
| page | integer >= 1 Page number |
| pageSize | integer [ 10 .. 50 ] Number of items per page |
{- "estimatedTotalItems": 0,
- "page": 0,
- "expectedPageSize": 0,
- "results": [
- {
- "id": 0,
- "name": "string",
- "popularity": 0,
- "score": 0
}
]
}Get detailed information about a specific artist.
| artist_id required | string ID of the artist |
{- "status": "string",
- "version": "string",
- "artist": {
- "id": 0,
- "name": "string",
- "sortName": "string",
- "slug": "string",
- "image": "string",
- "bio": {
- "text": "string"
}
}
}Get releases for a specific artist.
| artist_id required | string ID of the artist |
| usageTypes | string Enum: "download" "stream" Usage types (download or stream) |
| type | string Enum: "album" "single" "video" Release type |
| imageSize | integer Enum: 33 50 100 180 182 200 350 500 800 Image size |
| page | integer >= 1 Page number |
| pageSize | integer [ 10 .. 50 ] Number of items per page |
{- "status": "string",
- "version": "string",
- "releases": {
- "page": 0,
- "pageSize": 0,
- "totalItems": 0,
- "releases": [
- {
- "id": 0,
- "title": "string",
- "version": "string",
- "type": "string",
- "barcode": "string",
- "year": "string",
- "explicitContent": true,
- "artist": {
- "id": 0,
- "name": "string",
- "sortName": "string",
- "slug": "string",
- "image": "string",
- "bio": {
- "text": "string"
}
}, - "image": "string",
- "label": {
- "id": 0,
- "name": "string"
}, - "licensor": {
- "id": 0,
- "name": "string"
}, - "popularity": 0,
- "duration": 0,
- "trackCount": 0,
- "slug": "string"
}
]
}
}Browse artists by letter.
| letter required | string Letter to browse by |
{- "status": "string",
- "version": "string",
- "artists": {
- "page": 0,
- "pageSize": 0,
- "totalItems": 0,
- "artist": [
- {
- "id": 0,
- "name": "string",
- "sortName": "string",
- "slug": "string",
- "image": "string",
- "bio": {
- "text": "string"
}
}
]
}
}Search for releases using the aggregator service.
| q required | string Search terms |
| usageTypes | string Enum: "download" "stream" Usage types (download or stream) |
| excludeExplicitContent | boolean Exclude explicit content |
| artistId | string Artist ID |
| page | integer >= 1 Page number |
| pageSize | integer [ 10 .. 50 ] Number of items per page |
{- "estimatedTotalItems": 0,
- "page": 0,
- "expectedPageSize": 0,
- "results": [
- {
- "id": 0,
- "title": "string",
- "subtitle": "string",
- "upc": "string",
- "explicitContent": true,
- "trackCount": 0,
- "year": 0,
- "type": "string",
- "availableFor": [
- "string"
], - "artist": {
- "id": 0,
- "name": "string"
}, - "licensor": {
- "id": 0,
- "name": "string"
}, - "label": {
- "id": 0,
- "name": "string"
}, - "packages": [
- {
- "id": 0,
- "name": "string",
- "price": {
- "currencyCode": "string",
- "rrp": "string"
}, - "formats": [
- {
- "id": 0,
- "name": "string"
}
]
}
], - "popularity": 0,
- "score": 0
}
]
}Get detailed information about a specific release.
| release_id required | string ID of the release |
| usageTypes | string Enum: "download" "stream" Usage types (download or stream) |
| imageSize | integer Enum: 33 50 100 180 182 200 350 500 800 Image size |
{- "release": {
- "id": 0,
- "title": "string",
- "version": "string",
- "type": "string",
- "barcode": "string",
- "year": 0,
- "explicitContent": true,
- "artist": {
- "id": 0,
- "name": "string",
- "sortName": "string",
- "slug": "string",
- "image": "string",
- "bio": {
- "text": "string"
}
}, - "slug": "string",
- "cline": "string",
- "pline": "string",
- "image": "string",
- "label": {
- "id": 0,
- "name": "string"
}, - "licensor": {
- "id": 0,
- "name": "string"
}, - "popularity": 0,
- "duration": 0,
- "trackCount": 0,
- "download": {
- "releaseDate": "string",
- "packages": [
- {
- "id": 0,
- "description": "string",
- "price": {
- "currencyCode": "string",
- "sevendigitalPrice": "string",
- "recommendedRetailPrice": "string"
}, - "formats": [
- {
- "id": 0,
- "description": "string"
}
]
}
]
}, - "subscriptionStreaming": {
- "releaseDate": "string"
}
}
}Get tracks for a specific release.
| release_id required | string ID of the release |
| usageTypes | string Enum: "download" "stream" Usage types (download or stream) |
| imageSize | integer Enum: 33 50 100 180 182 200 350 500 800 Image size |
{- "page": 0,
- "pageSize": 0,
- "totalItems": 0,
- "tracks": [
- {
- "id": 0,
- "stream_id": "173fd1b7-72c4-44c4-9244-55a0a167a352",
- "payload": "string",
- "title": "string",
- "version": "string",
- "artist": {
- "id": 0,
- "name": "string",
- "sortName": "string",
- "slug": "string",
- "image": "string",
- "bio": {
- "text": "string"
}
}, - "artist_image": "string",
- "cover_art": "string",
- "trackNumber": 0,
- "duration": 0,
- "explicitContent": true,
- "isrc": "string",
- "type": "string",
- "release": {
- "id": 0,
- "title": "string",
- "version": "string",
- "type": "string",
- "barcode": "string",
- "year": 0,
- "explicitContent": true,
- "artist": {
- "id": 0,
- "name": "string",
- "sortName": "string",
- "slug": "string",
- "image": "string",
- "bio": {
- "text": "string"
}
}, - "slug": "string",
- "cline": "string",
- "pline": "string",
- "image": "string",
- "label": {
- "id": 0,
- "name": "string"
}, - "licensor": {
- "id": 0,
- "name": "string"
}, - "popularity": 0,
- "duration": 0,
- "trackCount": 0,
- "download": {
- "releaseDate": "string",
- "packages": [
- {
- "id": 0,
- "description": "string",
- "price": {
- "currencyCode": "string",
- "sevendigitalPrice": "string",
- "recommendedRetailPrice": "string"
}, - "formats": [
- {
- "id": 0,
- "description": "string"
}
]
}
]
}, - "subscriptionStreaming": {
- "releaseDate": "string"
}
}, - "discNumber": 0,
- "number": 0,
- "download": {
- "releaseDate": "string",
- "previewDate": "string",
- "packages": [
- {
- "id": 0,
- "description": "string",
- "price": {
- "currencyCode": "string",
- "sevendigitalPrice": "string",
- "recommendedRetailPrice": "string"
}, - "formats": [
- {
- "id": 0,
- "description": "string"
}
]
}
]
}, - "subscriptionStreaming": {
- "releaseDate": "string"
}, - "adSupportedStreaming": {
- "releaseDate": "string"
}
}
]
}Get detailed information about multiple releases.
| releaseids required | string Comma-separated list of release IDs |
| usageTypes | string Enum: "download" "stream" Usage types (download or stream) |
| showErrors | boolean Show errors |
| type | string Enum: "album" "single" "video" Release type |
| imageSize | integer Enum: 33 50 100 180 182 200 350 500 800 Image size |
{- "items": {
- "releases": [
- {
- "id": 0,
- "title": "string",
- "version": "string",
- "type": "string",
- "barcode": "string",
- "year": 0,
- "explicitContent": true,
- "artist": {
- "id": 0,
- "name": "string",
- "sortName": "string",
- "slug": "string",
- "image": "string",
- "bio": {
- "text": "string"
}
}, - "slug": "string",
- "cline": "string",
- "pline": "string",
- "image": "string",
- "label": {
- "id": 0,
- "name": "string"
}, - "licensor": {
- "id": 0,
- "name": "string"
}, - "popularity": 0,
- "duration": 0,
- "trackCount": 0,
- "download": {
- "releaseDate": "string",
- "packages": [
- {
- "id": 0,
- "description": "string",
- "price": {
- "currencyCode": "string",
- "sevendigitalPrice": "string",
- "recommendedRetailPrice": "string"
}, - "formats": [
- {
- "id": 0,
- "description": "string"
}
]
}
]
}, - "subscriptionStreaming": {
- "releaseDate": "string"
}
}
], - "errors": [
- { }
]
}
}Search for tracks using the aggregator service.
| q required | string Search terms |
| usageTypes | string Enum: "download" "stream" Usage types (download or stream) |
| excludeExplicitContent | boolean Exclude explicit content |
| artistId | string Artist ID |
| page | integer >= 1 Page number |
| pageSize | integer [ 10 .. 50 ] Number of items per page |
{- "estimatedTotalItems": 0,
- "page": 0,
- "expectedPageSize": 0,
- "results": [
- {
- "id": 0,
- "stream_id": "173fd1b7-72c4-44c4-9244-55a0a167a352",
- "payload": "string",
- "title": "string",
- "version": "string",
- "artist": {
- "id": 0,
- "name": "string",
- "sortName": "string",
- "slug": "string",
- "image": "string",
- "bio": {
- "text": "string"
}
}, - "artist_image": "string",
- "cover_art": "string",
- "trackNumber": 0,
- "duration": 0,
- "explicitContent": true,
- "isrc": "string",
- "type": "string",
- "release": {
- "id": 0,
- "title": "string",
- "version": "string",
- "type": "string",
- "barcode": "string",
- "year": 0,
- "explicitContent": true,
- "artist": {
- "id": 0,
- "name": "string",
- "sortName": "string",
- "slug": "string",
- "image": "string",
- "bio": {
- "text": "string"
}
}, - "slug": "string",
- "cline": "string",
- "pline": "string",
- "image": "string",
- "label": {
- "id": 0,
- "name": "string"
}, - "licensor": {
- "id": 0,
- "name": "string"
}, - "popularity": 0,
- "duration": 0,
- "trackCount": 0,
- "download": {
- "releaseDate": "string",
- "packages": [
- {
- "id": 0,
- "description": "string",
- "price": {
- "currencyCode": "string",
- "sevendigitalPrice": "string",
- "recommendedRetailPrice": "string"
}, - "formats": [
- {
- "id": 0,
- "description": "string"
}
]
}
]
}, - "subscriptionStreaming": {
- "releaseDate": "string"
}
}, - "discNumber": 0,
- "number": 0,
- "download": {
- "releaseDate": "string",
- "previewDate": "string",
- "packages": [
- {
- "id": 0,
- "description": "string",
- "price": {
- "currencyCode": "string",
- "sevendigitalPrice": "string",
- "recommendedRetailPrice": "string"
}, - "formats": [
- {
- "id": 0,
- "description": "string"
}
]
}
]
}, - "subscriptionStreaming": {
- "releaseDate": "string"
}, - "adSupportedStreaming": {
- "releaseDate": "string"
}
}
]
}Get detailed information about a specific track.
| track_id required | string ID of the track |
| usageTypes | string Enum: "download" "stream" Usage types (download or stream) |
| imageSize | integer Enum: 33 50 100 180 182 200 350 500 800 Image size |
{- "track": {
- "id": 0,
- "stream_id": "173fd1b7-72c4-44c4-9244-55a0a167a352",
- "payload": "string",
- "title": "string",
- "version": "string",
- "artist": {
- "id": 0,
- "name": "string",
- "sortName": "string",
- "slug": "string",
- "image": "string",
- "bio": {
- "text": "string"
}
}, - "artist_image": "string",
- "cover_art": "string",
- "trackNumber": 0,
- "duration": 0,
- "explicitContent": true,
- "isrc": "string",
- "type": "string",
- "release": {
- "id": 0,
- "title": "string",
- "version": "string",
- "type": "string",
- "barcode": "string",
- "year": 0,
- "explicitContent": true,
- "artist": {
- "id": 0,
- "name": "string",
- "sortName": "string",
- "slug": "string",
- "image": "string",
- "bio": {
- "text": "string"
}
}, - "slug": "string",
- "cline": "string",
- "pline": "string",
- "image": "string",
- "label": {
- "id": 0,
- "name": "string"
}, - "licensor": {
- "id": 0,
- "name": "string"
}, - "popularity": 0,
- "duration": 0,
- "trackCount": 0,
- "download": {
- "releaseDate": "string",
- "packages": [
- {
- "id": 0,
- "description": "string",
- "price": {
- "currencyCode": "string",
- "sevendigitalPrice": "string",
- "recommendedRetailPrice": "string"
}, - "formats": [
- {
- "id": 0,
- "description": "string"
}
]
}
]
}, - "subscriptionStreaming": {
- "releaseDate": "string"
}
}, - "discNumber": 0,
- "number": 0,
- "download": {
- "releaseDate": "string",
- "previewDate": "string",
- "packages": [
- {
- "id": 0,
- "description": "string",
- "price": {
- "currencyCode": "string",
- "sevendigitalPrice": "string",
- "recommendedRetailPrice": "string"
}, - "formats": [
- {
- "id": 0,
- "description": "string"
}
]
}
]
}, - "subscriptionStreaming": {
- "releaseDate": "string"
}, - "adSupportedStreaming": {
- "releaseDate": "string"
}
}
}Get detailed information about multiple tracks.
| trackids required | string Comma-separated list of track IDs |
| usageTypes | string Enum: "download" "stream" Usage types (download or stream) |
| showErrors | boolean Show errors |
| imageSize | integer Enum: 33 50 100 180 182 200 350 500 800 Image size |
{- "items": {
- "tracks": [
- {
- "id": 0,
- "stream_id": "173fd1b7-72c4-44c4-9244-55a0a167a352",
- "payload": "string",
- "title": "string",
- "version": "string",
- "artist": {
- "id": 0,
- "name": "string",
- "sortName": "string",
- "slug": "string",
- "image": "string",
- "bio": {
- "text": "string"
}
}, - "artist_image": "string",
- "cover_art": "string",
- "trackNumber": 0,
- "duration": 0,
- "explicitContent": true,
- "isrc": "string",
- "type": "string",
- "release": {
- "id": 0,
- "title": "string",
- "version": "string",
- "type": "string",
- "barcode": "string",
- "year": 0,
- "explicitContent": true,
- "artist": {
- "id": 0,
- "name": "string",
- "sortName": "string",
- "slug": "string",
- "image": "string",
- "bio": {
- "text": "string"
}
}, - "slug": "string",
- "cline": "string",
- "pline": "string",
- "image": "string",
- "label": {
- "id": 0,
- "name": "string"
}, - "licensor": {
- "id": 0,
- "name": "string"
}, - "popularity": 0,
- "duration": 0,
- "trackCount": 0,
- "download": {
- "releaseDate": "string",
- "packages": [
- {
- "id": 0,
- "description": "string",
- "price": {
- "currencyCode": "string",
- "sevendigitalPrice": "string",
- "recommendedRetailPrice": "string"
}, - "formats": [
- {
- "id": null,
- "description": null
}
]
}
]
}, - "subscriptionStreaming": {
- "releaseDate": "string"
}
}, - "discNumber": 0,
- "number": 0,
- "download": {
- "releaseDate": "string",
- "previewDate": "string",
- "packages": [
- {
- "id": 0,
- "description": "string",
- "price": {
- "currencyCode": "string",
- "sevendigitalPrice": "string",
- "recommendedRetailPrice": "string"
}, - "formats": [
- {
- "id": 0,
- "description": "string"
}
]
}
]
}, - "subscriptionStreaming": {
- "releaseDate": "string"
}, - "adSupportedStreaming": {
- "releaseDate": "string"
}
}
], - "errors": [
- { }
]
}
}Returns an HLS manifest from the streaming server using a stream ID.
| stream_id required | string <uuid> Stream ID used to fetch the HLS manifest. |
#EXTM3U #EXT-X-VERSION:3 #EXT-X-TARGETDURATION:6 #EXT-X-MEDIA-SEQUENCE:0 #EXTINF:6.000, segment0.ts #EXTINF:6.000, segment1.ts #EXT-X-ENDLIST