Fetch artist metadata
Audicin for Apps API (1.0.0)
Audicin for Apps API Authentication (REQUIRED)
All Audicin for Apps API endpoints require the X-API-KEY header.
Example:
X-API-KEY: xxxxxxxxxCommon error responses:
- 401 → Missing or invalid API key
- 402 → Subscription inactive / expired
- 403 → License missing or quota exceeded
- 404 → Resource not found
Download OpenAPI description
Overview
Languages
Servers
Generated server url
https://dev.api-b2b.audicin.com/api/v1
- Generated server urlhttps://dev.api-b2b.audicin.com/api/v1/tenants/stream/songPreview/{songPreviewId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://dev.api-b2b.audicin.com/api/v1/tenants/stream/songPreview/{songPreviewId}' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'Response
application/json
{ "songId": "01HXZK9YF8A1B3C4D5E6F7G8H", "title": "My Song", "url": "https://example.com/get/abc", "method": "GET", "expiresInSeconds": 300, "songDuration": 180, "objectMetadata": { "contentType": "audio/mpeg", "size": 3456789 } }
- Generated server urlhttps://dev.api-b2b.audicin.com/api/v1/tenants/stream/song/{songId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://dev.api-b2b.audicin.com/api/v1/tenants/stream/song/{songId}' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'Response
application/json
{ "songId": "01HXZK9YF8A1B3C4D5E6F7G8H", "title": "My Song", "url": "https://example.com/get/abc", "method": "GET", "expiresInSeconds": 300, "songDuration": 180, "objectMetadata": { "contentType": "audio/mpeg", "size": 3456789 } }