How to GET Pdf
Fetch the information of an already created PDF. Typically this is useful to poll until pdf.read_status == 'SUCCESS' (and not pdf.read_status == 'FAILED') before asking questions against the PDF.
Retrieve details of a PDF by its ID.
Authorizations
AuthorizationstringRequired
API key provided as a Bearer token in the Authorization header.
Path parameters
pdf-idstring · uuidRequired
The unique identifier of the PDF.
Responses
200
Details of the PDF.
application/json
401
Unauthorized access, invalid API key.
application/json
404
PDF not found.
application/json
get
/v1/pdf/{pdf-id}Last updated