curl --request GET \
--url https://api.gladia.io/v2/pre-recorded \
--header 'x-gladia-key: <api-key>'{
"first": "https://api.gladia.io/v2/transcription?status=done&offset=0&limit=20",
"current": "https://api.gladia.io/v2/transcription?status=done&offset=0&limit=20",
"next": "https://api.gladia.io/v2/transcription?status=done&offset=20&limit=20",
"items": [
{
"id": "45463597-20b7-4af7-b3b3-f5fb778203ab",
"request_id": "G-45463597",
"version": 2,
"status": "queued",
"created_at": "2023-12-28T09:04:17.210Z",
"post_session_metadata": {},
"kind": "pre-recorded",
"completed_at": "2023-12-28T09:04:37.210Z",
"custom_metadata": {
"user": "John Doe"
},
"error_code": 500
}
]
}List all the pre-recorded transcriptions matching the parameters.
curl --request GET \
--url https://api.gladia.io/v2/pre-recorded \
--header 'x-gladia-key: <api-key>'{
"first": "https://api.gladia.io/v2/transcription?status=done&offset=0&limit=20",
"current": "https://api.gladia.io/v2/transcription?status=done&offset=0&limit=20",
"next": "https://api.gladia.io/v2/transcription?status=done&offset=20&limit=20",
"items": [
{
"id": "45463597-20b7-4af7-b3b3-f5fb778203ab",
"request_id": "G-45463597",
"version": 2,
"status": "queued",
"created_at": "2023-12-28T09:04:17.210Z",
"post_session_metadata": {},
"kind": "pre-recorded",
"completed_at": "2023-12-28T09:04:37.210Z",
"custom_metadata": {
"user": "John Doe"
},
"error_code": 500
}
]
}Your personal Gladia API key
The starting point for pagination. A value of 0 starts from the first item.
x >= 0The maximum number of items to return. Useful for pagination and controlling data payload size.
x >= 1Filter items relevant to a specific date in ISO format (YYYY-MM-DD).
"2026-04-01"
Include items that occurred before the specified date in ISO format.
"2026-04-01T09:58:49.672Z"
Filter for items after the specified date. Use with before_date for a range. Date in ISO format.
"2026-04-01T09:58:49.672Z"
Filter the list based on item status. Accepts multiple values from the predefined list.
queued, processing, done, error ["done"]{ "user": "John Doe" }A list of pre recorded jobs matching the parameters.
URL to fetch the first page
"https://api.gladia.io/v2/transcription?status=done&offset=0&limit=20"
URL to fetch the current page
"https://api.gladia.io/v2/transcription?status=done&offset=0&limit=20"
URL to fetch the next page
"https://api.gladia.io/v2/transcription?status=done&offset=20&limit=20"
List of pre-recorded transcriptions
Show child attributes