For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Start buildingGet support
DocumentationAPI ReferenceChangelogDiscord
  • Voices
    • POSTCreate voice
    • GETList voices
    • DELDelete voice
  • Text-to-Speech (TTS)
    • WSSStream Input
    • STREAMText-to-Speech (Streamed JSON)
    • POSTText-to-Speech (Streamed File)
    • POSTText-to-Speech (Json)
    • POSTText-to-Speech (File)
    • POSTVoice Conversion (Streamed File)
    • STREAMVoice Conversion (Streamed JSON)
  • Speech-to-speech (EVI)
    • WSSChat
  • Expression Measurement API
      • GETList jobs
      • POSTStart inference job
      • GETGet job details
      • GETGet job predictions
      • GETGet job artifacts
      • POSTStart inference job from local file
Start buildingGet support
LogoLogo
LogoLogo
Expression Measurement APIBatch

Start inference job from local file

POST
https://api.hume.ai/v0/batch/jobs
POST
/v0/batch/jobs
$curl -X POST https://api.hume.ai/v0/batch/jobs \
> -H "Content-Type: multipart/form-data" \
> -F "file[]"=@string
200Successful
1{
2 "job_id": "string"
3}
Start a new batch inference job.
Was this page helpful?
Previous

Stream

Next
Built with

Request

This endpoint expects a multipart form with multiple files.
jsonobjectOptional
Stringified JSON object containing the inference job configuration.
filefilesRequired

Local media files (see recommended input filetypes) to be processed.

If you wish to supply more than 100 files, consider providing them as an archive (.zip, .tar.gz, .tar.bz2, .tar.xz).

Response

job_idstringformat: "uuid"
The ID of the started job.