Skip to main content
POST
/
tiro
/
upload-from-url
Upload audio from URL
curl --request POST \
  --url https://{deployment}/api/v1/tiro/upload-from-url \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "url": "https://drive.google.com/uc?id=…",
  "title": "Weekly sync",
  "transcribe_locale": "en_US"
}
'
{
  "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

application/json
url
string
required

Public/shared URL of the audio file.

title
string
speakers_expected
integer
transcribe_locale
string

e.g. en_US, ko_KR, ja_JP.

translate_locale
string
summary_locale
string
context
string
thread_ids
integer[]

Response

Created note + transcription job

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