How to curl your api?

Clip creation

curl --location --request POST 'https://app.resemble.ai/api/v2/projects/<your-project-uuid>/clips' \

--header 'Authorization: Bearer <your-api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
               "title": "Clip title",
           "voice_uuid": "<your-voice-uuid>",
           "body": "hello there this is an <prosody pitch=\"x-high\">example</prosody> of ssml in text",   
}'

If you'd like to use the example, make sure to make the following replacements:
  • Replace <your-project-uuid> with the UUID of your project
  • Replace <your-api-key> with your account's api key
  • Replace <your-voice-uuid> with the voice UUID you wish to synthesize in 

Further information can be found in Clip Creation.