cURL
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
-H 'Authorization: Bearer YOUR_API_KEY'
curl -X GET 'https://api.unifically.com/higgsfield/sounds?size=20' \ -H 'Authorization: Bearer YOUR_API_KEY'
14