Skip to main content

Get properties of a PDF

Getting the document properties will allow you to read the default properties of a PDF using the PDF.API.

Some of these include author, creation date, subject, and title.

You can view the full Swagger documentation here.

Request

curl --location 'https://pdf-api.doclabs.cloud/api/v1/MyDocument.pdf/document/properties?storageName=MyBucketName' \
--header 'Content-Type: application/json' \
--header 'x-api-key: ••••••'

Response

{
"author": "string",
"creationDate": "string",
"creator": "string",
"keywords": "string",
"subject": "string",
"title": "string"
}