Skip to main content
GET
/
jobs
Get Jobs
import requests

url = "https://platform.reducto.ai/jobs"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.json())
{
  "jobs": [
    {
      "job_id": "<string>",
      "status": "Pending",
      "type": "Parse",
      "raw_config": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "source": "<any>",
      "num_pages": 123,
      "total_pages": 123,
      "duration": 123,
      "bucket": "<any>"
    }
  ],
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

exclude_configs
boolean
default:false

Exclude raw_config from response to reduce size

cursor
string | null

Cursor for pagination. Use the next_cursor from the previous response to fetch the next page.

limit
integer
default:100

Maximum number of jobs to return per page. Defaults to 100, max 500.

Required range: 1 <= x <= 500

Response

Successful Response

jobs
SingleJob · object[]
required

List of jobs with their job_id, status, type, raw_config, created_at, num_pages and duration

next_cursor
string | null

Cursor to fetch the next page of results. If null, there are no more results.

I