Variants
Variants manage different quality levels or formats for audio content within an organization. Currently variants must be created on the website.
GET
/v1/variant Returns a list of variants for an organization
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | number | Optional | Maximum number of variants to return |
offset | number | Optional | Number of variants to skip |
Response
{
"ok": true,
"api_request_id": "uuid",
"count": "number",
"variants": [ /* Array of variant details */ ]
} GET
/v1/variant/:variant_id Returns details about a specific variant
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
variant_id | uuid | Required | The ID of the variant to retrieve (path parameter) |
Response
{
"ok": true,
"api_request_id": "uuid",
"variant_id": "uuid",
"variant": { /* Variant details */ }
}