Skip to main content
POST
/
tiro
/
upload
Upload audio
curl --request POST \
  --url https://{deployment}/api/v1/tiro/upload \
  --header 'Content-Type: multipart/form-data' \
  --header 'X-API-KEY: <api-key>' \
  --form file='@example-file' \
  --form 'title=<string>'
{
  "success": true,
  "note_id": 123,
  "note_guid": "<string>",
  "note_title": "<string>",
  "transcription_uuid": "<string>",
  "note_url": "<string>",
  "message": "<string>"
}

Authorizations

X-API-KEY
string
header
required

Your deployment's API key (MMK_API_KEY).

Body

multipart/form-data
file
file
required

Audio file.

title
string

Optional note title.

Response

Created note + transcription job

success
boolean
note_id
integer
note_guid
string
note_title
string
transcription_uuid
string
note_url
string
message
string