GET
/
v1
/
outputs
/
{output_id}
/
transcriptions
/
curl --request GET \
  --url https://api.rask.ai/v1/outputs/{output_id}/transcriptions/ \
  --header 'Authorization: Bearer <token>' \
  --header 'accept: <accept>'
[
  {
    "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

accept
string
required

Path Parameters

output_id
string
required

Response

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