PDF Metadata Reader
DataRead title, author, creation date, PDF version, page count, and encryption flag directly from a PDF's trailer/Info dictionary
Drop in a PDF and get its title, author, subject, keywords, creator, producer, creation and modification dates, page count, PDF version, and whether it's encrypted, all without opening a viewer or waiting for the document to render. It reads this straight out of the file's trailer and info dictionary using targeted parsing rather than a full PDF rendering engine, which keeps it fast even on a large file since it never touches the actual page content or extracts text. It doesn't read XMP metadata (a separate, more modern metadata format some PDFs also embed) and can return partial results on unusual files that use compressed cross-reference streams instead of a classic trailer. For batch-reading metadata across an entire archive of PDFs rather than one at a time in the browser, the REST API and SDKs cover that same extraction at scale.
How to use PDF Metadata Reader
- 1.Drop a PDF file (or click to browse) to read its title, author, subject, keywords, creator, producer, creation/modification dates, page count, and PDF version.
- 2.Check the Encrypted badge to quickly see whether a PDF is password-protected before trying to open it in another tool.
- 3.Use the REST API or an SDK to batch-read metadata across many PDFs, e.g. to build an index of a document archive.
Frequently asked questions
Use via API, SDK, or MCP
cURL# Free: 1,000 req/day · Pro: 10,000 req/day
curl -X POST https://api.utilix.tech/v1/tools/pdf-metadata \
-H "Authorization: Bearer utx_live_..." \
-F "file=@report.pdf"Get an API key from your dashboard · Full API docs →