Python
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>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
Pending
Completed
Failed
Idle
Show child attributes
Was this page helpful?