GET
/
jobs
curl --request GET \
  --url https://api.spectropic.ai/v1/jobs \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "created",
      "model": "<string>",
      "action": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123
}

List all jobs you have submitted. If the job is succeeded, the transcript will be available for 24 hours after job completion. Get the output by making a request to Get job.

Authorizations

Authorization
string
header
required

API key authentication. Add your API key with format: Bearer <API_KEY>

Query Parameters

limit
number
default:10
offset
number
default:0
status
enum<string>
Available options:
created,
queued,
running,
succeeded,
failed

Response

200
application/json
OK
items
object[]
required
total
number
required