Fetch available background sounds for Text-to-Speech generation.
Pricing
For current pricing, see the Pricing page.
Authentication
All endpoints require authentication using Bearer token authorization:
-H 'Authorization: Bearer YOUR_API_KEY'
Request
curl -X GET 'https://api.unifically.com/higgsfield/sounds?size=20' \
-H 'Authorization: Bearer YOUR_API_KEY'
Parameters
Number of sounds to return per pageDefault: 14
Pagination cursor for fetching next page
Response
{
"code": 200,
"data": {
"items": [
{
"id": "DwUP9LmFKqHsvvWQkjLE6",
"name": "Ambient Music",
"preview_url": "https://..."
}
],
"cursor": "next_page_cursor",
"error": {}
}
}
Response Fields
HTTP status code (200 for success)
Response dataArray of sound objectsDisplay name of the background sound
Pagination cursor for fetching next page
Error information (empty object for successful requests)