Skip to main content

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

EndpointProviderResource
GET /v1/resources/higgsfield-ai/motionsHiggsfieldMotions
GET /v1/resources/higgsfield-ai/voicesHiggsfieldTTS voices
GET /v1/resources/higgsfield-ai/soundsHiggsfieldSound effects
GET /v1/resources/higgsfield-ai/camera-movementsCinematic StudioCamera movements
GET /v1/resources/higgsfield-ai/camera-settingsCinematic StudioCamera settings
GET /v1/resources/kuaishou/kling/voicesKlingKling voice presets
GET /v1/resources/google/voices/veo-3.1GoogleVeo 3.1 voice presets
GET /v1/resources/elevenlabs/voicesElevenLabsVoices
GET /v1/resources/suno-ai/voice/verification-phraseSunoVoice 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:
ParameterTypeRequiredDescription
languagestringNoLanguage 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 TypeUse As Parameter
Motionsmotion_id
Voices (Higgsfield/ElevenLabs)voice_id or voice
Voices (Kling)voice_id in elements or voices array
Voices (Google Veo)voice
Soundssound_id
Camera Movementspreset_id
Camera Settingscamera_model_id, camera_lens_id, camera_aperture_id, camera_focal_length_id
Voice Verification Phrasephrase_id