List recent transcriptions

Return one newest-first window of 1 to 100 jobs for history, recovery, or dashboards. The current v1 endpoint has no cursor or pagination token and omits completed transcript bodies; fetch one job when you need its text and segments.

GET/api/v1/transcriptions200 OK

Authentication

Send an active Fast Transcriber API key as an HTTP bearer token.

http
Authorization: Bearer ft_live_replace_me

Request

Use the path or query parameters described below.

FieldTypeDescription
limitintegerQuery parameter from 1 to 100. Defaults to 25.
cURL
curl "https://fast-transcriber.com/api/v1/transcriptions?limit=10" \
  --header "Authorization: Bearer $FAST_TRANSCRIBER_API_TOKEN"

Response

Successful JSON responses use a top-level data envelope. A 204 response has no body.

FieldTypeDescription
dataarrayRecent jobs owned by the authenticated account.
data[].iduuidStable transcription job identifier.
data[].created_atdate-timeUTC job creation timestamp.
data[].duration_secondsinteger | nullDetected media duration when available.
data[].errorstring | nullFailure message when the job status is failed.
data[].filenamestringUploaded filename or derived link label.
data[].statusstringCurrent job status.
data[].textnullList responses do not include transcript text.
data[].segmentsnullList responses do not include segments.
Response
{
  "data": [
    {
      "created_at": "2026-09-03T10:12:00.000Z",
      "duration_seconds": 1842,
      "error": null,
      "filename": "interview.mp3",
      "id": "95c3fdd8-…",
      "segments": null,
      "status": "completed",
      "text": null
    }
  ]
}

Errors

API errors return a machine-readable code and message.

StatusCodeMeaning
401missing_api_keyNo bearer key was supplied.
401invalid_api_keyThe bearer key is malformed, unknown, or revoked.
400invalid_limitlimit is not an integer between 1 and 100.
Error envelope
{
  "error": {
    "code": "invalid_limit",
    "message": "limit must be between 1 and 100."
  }
}

Implementation notes

  • The response contains only the newest requested jobs; v1 does not return a cursor or pagination token for older results.
© 2026 FastTranscriberBuilt for developers who work with speech.