API Reference
List your transcriptions
Returns the authenticated account’s transcriptions, newest first, cursor-paginated. Pass the previous response’s next_cursor as ?cursor= for the next page; a cursor is only valid against the SAME query it was minted under.
Authorization
BearerApiKey AuthorizationBearer <token>
A Shorty API key, sent as Authorization: Bearer <key>. An OAuth 2.1 access token issued to a connected app is also accepted on the same header.
In: header
Query Parameters
cursor?string
limit?integer
Range
1 <= value <= 100Default
20Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/v1/transcriptions"{ "data": [ { "id": "string", "status": "string", "progress": 0, "model_type": "string", "language": "string", "input_file": "string", "error": "string", "created_at": "string" } ], "has_more": true, "next_cursor": "string"}