Skip to main content
GET
/
jobs
List 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
}

Documentation Index

Fetch the complete documentation index at: https://docs.spectropic.ai/llms.txt

Use this file to discover all available pages before exploring further.

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

OK

items
object[]
required
total
number
required