GET
/
higgsfield
/
sounds
Get Sounds
curl --request GET \
  --url https://api.unifically.com/higgsfield/sounds \
  --header 'Authorization: Bearer <token>'
{
  "code": 200,
  "data": {
    "items": [
      {
        "id": "DwUP9LmFKqHsvvWQkjLE6",
        "name": "Ambient Music",
        "preview_url": "https://..."
      }
    ],
    "cursor": "next_page_cursor",
    "error": {}
  }
}
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

size
integer
Number of sounds to return per pageDefault: 14
cursor
string
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

code
integer
default:"200"
HTTP status code (200 for success)
data
object
Response data
items
array
Array of sound objects
id
string
Unique sound identifier
name
string
Display name of the background sound
preview_url
string
URL to preview the sound
cursor
string
Pagination cursor for fetching next page
error
object
Error information (empty object for successful requests)