Documentation Index
Fetch the complete documentation index at: https://docs.unifically.com/llms.txt
Use this file to discover all available pages before exploring further.
The /v1/resources endpoint provides access to provider-specific resources such as motion presets, voices, and sounds that can be used with various models.
Quick Reference
| Endpoint | Provider | Resource |
|---|
GET /v1/resources/higgsfield-ai/motions | Higgsfield | Motions |
GET /v1/resources/higgsfield-ai/voices | Higgsfield | TTS voices |
GET /v1/resources/higgsfield-ai/sounds | Higgsfield | Sound effects |
GET /v1/resources/higgsfield-ai/camera-movements | Cinematic Studio | Camera movements |
GET /v1/resources/higgsfield-ai/camera-settings | Cinematic Studio | Camera settings |
GET /v1/resources/kuaishou/kling/voices | Kling | Kling voice presets |
GET /v1/resources/google/voices/veo-3.1 | Google | Veo 3.1 voice presets |
GET /v1/resources/elevenlabs/voices | ElevenLabs | Voices |
GET /v1/resources/suno-ai/voice/verification-phrase | Suno | Voice verification phrase |
Examples
Get Higgsfield Motions
curl https://api.unifically.com/v1/resources/higgsfield-ai/motions \
-H "Authorization: Bearer YOUR_API_KEY"
Response:
{
"code": 200,
"success": true,
"data": [
{
"id": "d2389a9a-91c2-4276-bc9c-c9e35e8fb85a",
"name": "Gentle Sway",
"preview_url": "https://example.com/preview.mp4"
}
]
}
Get Higgsfield TTS Voices
curl https://api.unifically.com/v1/resources/higgsfield-ai/voices \
-H "Authorization: Bearer YOUR_API_KEY"
Response:
{
"code": 200,
"success": true,
"data": [
{
"id": "1YxkwUwGY4H3slvZUBRhXW",
"name": "Sarah",
"category": "emotions",
"preview_url": "https://example.com/preview.mp3"
}
]
}
Get Higgsfield Sound Effects
curl https://api.unifically.com/v1/resources/higgsfield-ai/sounds \
-H "Authorization: Bearer YOUR_API_KEY"
Response:
{
"code": 200,
"success": true,
"data": [
{
"id": "DwUP9LmFKqHsvvWQkjLE6",
"name": "Coffee Shop Ambience",
"preview_url": "https://example.com/preview.mp3"
}
]
}
Get Cinematic Studio Camera Movements
curl https://api.unifically.com/v1/resources/higgsfield-ai/camera-movements \
-H "Authorization: Bearer YOUR_API_KEY"
Get Cinematic Studio Camera Settings
curl https://api.unifically.com/v1/resources/higgsfield-ai/camera-settings \
-H "Authorization: Bearer YOUR_API_KEY"
Get Kling Voices
Returns available voice presets for use with Kling video models that support voice_id (e.g. v2.6, v3.0, v3.0 Omni).
curl https://api.unifically.com/v1/resources/kuaishou/kling/voices \
-H "Authorization: Bearer YOUR_API_KEY"
Response:
{
"code": 200,
"success": true,
"data": [
{
"id": 1,
"name": "Male Voice 1"
},
{
"id": 2,
"name": "Female Voice 1"
}
]
}
Get Google Veo Voices
Returns available voice presets for use with Veo 3.1 reference mode (voice parameter). Requires at least 1 reference image in the task input.
curl https://api.unifically.com/v1/resources/google/voices/veo-3.1 \
-H "Authorization: Bearer YOUR_API_KEY"
Response:
{
"code": 200,
"success": true,
"data": [
{
"id": "achernar",
"name": "Achernar",
"description": "Female, soft, high pitch",
"sample": "https://gstatic.com/aistudio/voices/samples/Achernar.wav"
},
{
"id": "achird",
"name": "Achird",
"description": "Male, friendly, mid pitch",
"sample": "https://gstatic.com/aistudio/voices/samples/Achird.wav"
},
{
"id": "algenib",
"name": "Algenib",
"description": "Male, gravelly, low pitch",
"sample": "https://gstatic.com/aistudio/voices/samples/Algenib.wav"
}
]
}
Get ElevenLabs Voices
curl https://api.unifically.com/v1/resources/elevenlabs/voices \
-H "Authorization: Bearer YOUR_API_KEY"
Response:
{
"code": 200,
"success": true,
"data": {
"voices": [
{
"voice_id": "21m00Tcm4TlvDq8ikWAM",
"name": "Rachel",
"category": "premade",
"labels": {
"accent": "american",
"age": "young",
"gender": "female"
},
"preview_url": "https://storage.googleapis.com/..."
}
]
}
}
Get Suno Voice Verification Phrase
Generates a verification phrase for Suno voice creation.
Query Parameters:
| Parameter | Type | Required | Description |
|---|
language | string | No | Language code for the phrase. Available: zh, en, es, fr, pt, de, ja, ko, hi, ru |
curl https://api.unifically.com/v1/resources/suno-ai/voice/verification-phrase?language=ru \
-H "Authorization: Bearer YOUR_API_KEY"
Response:
{
"success": true,
"code": 200,
"data": {
"phrase_id": "ea748c01-6257-45ff-a037-c8657ff5c09d",
"phrase_text": "Sing a cheerful melody with your clear voice today"
}
}
Using Resources
Use the id value from the response as the corresponding parameter when creating a task:
| Resource Type | Use As Parameter |
|---|
| Motions | motion_id |
| Voices (Higgsfield/ElevenLabs) | voice_id or voice |
| Voices (Kling) | voice_id in elements or voices array |
| Voices (Google Veo) | voice |
| Sounds | sound_id |
| Camera Movements | preset_id |
| Camera Settings | camera_model_id, camera_lens_id, camera_aperture_id, camera_focal_length_id |
| Voice Verification Phrase | phrase_id |