GET
/
job
/
{job_id}
Retrieve Parse
import requests

url = "https://platform.reducto.ai/job/{job_id}"

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

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

print(response.json())
{
  "status": "Pending",
  "result": {
    "job_id": "<string>",
    "duration": 123,
    "pdf_url": "<string>",
    "studio_link": "<string>",
    "usage": {
      "num_pages": 123,
      "credits": 123
    },
    "result": {
      "type": "<string>",
      "chunks": [
        "<any>"
      ],
      "ocr": {},
      "custom": "<any>"
    }
  },
  "progress": 123,
  "reason": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

job_id
string
required

Response

Successful Response

status
enum<string>
required
Available options:
Pending,
Completed,
Failed,
Idle
result
object | null
progress
number | null
reason
string | null