PDF
Get PDF Status
Poll the status of a PDF generation job.
GET
Get PDF Status
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Poll the status of a PDF generation job.
curl --request GET \
--url https://api.oviond.com/v1/pdf/status/:job_id \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"job_id": "<string>",
"url": "https://s3.amazonaws.com/bucket/pdf/project.pdf",
"error": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
1curl --request GET \
--url https://api.oviond.com/v1/pdf/status/:job_id \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"job_id": "<string>",
"url": "https://s3.amazonaws.com/bucket/pdf/project.pdf",
"error": "<string>"
}
}