POST
/
v1
/
transcriptions
curl --request POST \
  --url https://api.spi-tch.com/v1/transcriptions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'url=<string>' \
  --form language=yo \
  --form timestamp=true \
  --form multispeaker=true
{
  "request_id": "<string>",
  "text": "<string>",
  "segments": [
    {
      "start": 123,
      "end": 123,
      "text": 123,
      "speaker": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

multipart/form-data
language
enum<string>
required
Available options:
yo,
en,
ha,
ig
content
file | null
url
string | null
timestamp
boolean | null
multispeaker
boolean | null

Response

200
application/json
Successful Response
request_id
string
required
text
string | null
segments
array