ShortyShorty
API Reference

Get job status

GET
/v1/jobs/{jobId}

Returns the status of an async job the authenticated account started (a summary, transcription, or subtitle job created via a POST here). The body is the canonical nested job-status shape used across every Shorty surface. A non-existent or foreign job id returns 404.

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

Path Parameters

jobId*string
Length1 <= length

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/jobs/string"
{  "jobId": "string",  "status": "string",  "progress": 0,  "step": "string",  "error": "string",  "output": {    "property1": null,    "property2": null  }}