POST
/
v1
/
transcriptions
/
curl --request POST \
  --url https://api.rask.ai/v1/transcriptions/ \
  --header 'Authorization: Bearer <token>' \
  --header 'content-type: <content-type>' \
  --data '{
  "language": "<string>",
  "segments": [
    {
      "content": "<string>",
      "end": "<string>",
      "start": "<string>"
    }
  ]
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "language": "<string>",
  "segments": [
    {
      "content": "<string>",
      "end": "<string>",
      "start": "<string>"
    }
  ]
}

Authorizations

Authorization
string
headerrequired

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

Headers

content-type
string
required

Body

application/json
language
string
required
segments
object[]
required

Response

200 - application/json
id
string
required
language
string
required
segments
object[]
required