GET
TracksGet Image Colors
Return dominant artwork colors for a track.
/v1/tracks/:tune_id/colorsMethod
GET
Path
/v1/tracks/:tune_id/colors
Group
Tracks
Overview
How to use this endpoint
Use this endpoint when you need structured API data in a predictable JSON shape. Reference the request example, required parameters, and response fields below to wire it into your product or internal tool.
Response format
JSON response
All successful responses return data in a stable JSON envelope and use Tune UUIDs for resource identifiers.
Code example
Example request
request
Copy-ready
GET /v1/tracks/3f2504e0-4f89-11d3-9a0c-0305e82c3301/colorsRequest parameters
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
tune_id | uuid | Yes | Stable Tune identifier for the requested resource. |
Response schema
Response fields
| Field | Type | Description |
|---|---|---|
tune_id | uuid | Track Tune identifier. |
dominant | string | Dominant hex color from artwork. |
secondary | string | Secondary hex color. |
tertiary | string | null | Tertiary hex color if available. |
Code example
Example response
application/json
Copy-ready
{
"data": {
"tune_id": "3f2504e0-4f89-11d3-9a0c-0305e82c3301",
"dominant": "#1a1a2e",
"secondary": "#4a90d9",
"tertiary": "#e8e0f0"
}
}Next steps