Skip to main content
GET
/
recordings
/
{id}
Fetch one recording
curl --request GET \
  --url http://127.0.0.1:{port}/recordings/{id} \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "recording": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "text": "<string>",
    "postProcessedText": "<string>",
    "transcribedText": "<string>",
    "date": "2023-11-07T05:31:56Z",
    "duration": 123,
    "mode": "<string>",
    "transcriptionProvider": "<string>",
    "postProcessingProvider": "<string>",
    "status": "<string>",
    "audioFilePath": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Token from the discovery file. Required on every endpoint except /health.

Path Parameters

id
string<uuid>
required

Response

200 - application/json

Recording payload

ok
boolean
recording
object