get-pdf-page-count
Determine the total number of pages in a PDF by providing its unique ID. Simplify document management and analysis with precise page count information.
Instructions
Get the page count of a PDF
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pdf_id | Yes | ID of the PDF to get page count for |
Input Schema (JSON Schema)
{
"properties": {
"pdf_id": {
"description": "ID of the PDF to get page count for",
"type": "string"
}
},
"required": [
"pdf_id"
],
"type": "object"
}