Skip to main content
GET
/
transcriptions
/
list
List transcriptions
curl --request GET \
  --url https://api.openwhispr.com/api/v1/transcriptions/list \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "user_id": "<string>",
      "text": "<string>",
      "word_count": 123,
      "provider": "<string>",
      "model": "<string>",
      "language": "<string>",
      "audio_duration_ms": 123,
      "processing_ms": 123,
      "segments": [
        {
          "start": 123,
          "end": 123,
          "text": "<string>",
          "speaker": "<string>",
          "words": [
            {
              "word": "<string>",
              "start": 123,
              "end": 123,
              "score": 123
            }
          ]
        }
      ],
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.openwhispr.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key starting with owk_live_

Query Parameters

limit
integer
default:50

Number of transcriptions to return.

Required range: 1 <= x <= 100
cursor
string

Pagination cursor from a previous response.

note_id
string<uuid>

Filter by linked note ID.

language
string

Filter by detected language (e.g. 'en').

include
enum<string>

Set to 'segments' to include speaker-attributed segment data in the response. Omitted by default to keep responses compact.

Available options:
segments

Response

200 - application/json

Paginated transcription history.

data
object[]
has_more
boolean
next_cursor
string | null