For Agents
Convert HTML content or a URL to a PDF document with configurable page settings. Single-endpoint service for on-demand PDF generation.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the PDF Endpoint API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with PDF Endpoint API.
Convert raw HTML markup into a downloadable PDF document
Render a live webpage at a given URL as a PDF snapshot
Configure page size, orientation, and margins for PDF output
Generate PDFs without provisioning headless browser infrastructure
GET STARTED
Use for: I need to convert an HTML invoice to PDF, I want to generate a PDF from a webpage URL, Get the PDF version of a report rendered from HTML, Convert a styled HTML email to a PDF attachment
Not supported: Does not handle template management, batch processing, or format conversion beyond PDF — use for single-call HTML/URL to PDF conversion only.
Jentic publishes the only available OpenAPI specification for PDF Endpoint API, keeping it validated and agent-ready. PDF Endpoint API converts HTML content or URLs to PDF documents through a single REST endpoint. The service accepts either raw HTML markup or a public URL and returns a rendered PDF with configurable page size, orientation, and margin settings. It is designed for lightweight, on-demand document generation without managing headless browser infrastructure.
Return PDF as a binary download or hosted file URL
Patterns agents use PDF Endpoint API for, with concrete tasks.
★ Invoice and Receipt Generation
Generate PDF invoices or receipts from HTML templates populated with transaction data. PDF Endpoint API accepts the rendered HTML and returns a formatted PDF document in a single API call. This eliminates the need to run headless Chrome or wkhtmltopdf on your own servers, reducing infrastructure costs for transactional document generation.
POST to /v1/convert with HTML containing a populated invoice template and return the generated PDF binary
Webpage Archiving
Capture a point-in-time PDF snapshot of a public webpage for compliance, archival, or evidence purposes. PDF Endpoint API renders the page exactly as a browser would, including CSS styling and images, producing a faithful visual record without maintaining screenshot infrastructure.
POST to /v1/convert with a target URL and A4 landscape orientation to capture a full-page PDF archive
Report Export
Export dashboard reports or data summaries to PDF by sending rendered HTML output from a reporting engine. PDF Endpoint API handles the conversion so that downstream consumers receive portable, print-ready documents without needing PDF rendering libraries installed locally.
Submit HTML report content to /v1/convert with custom margins and letter page size to produce a formatted PDF report
AI Agent Document Generation via Jentic
AI agents generate PDF documents on the fly by calling PDF Endpoint API through Jentic. The agent searches for a PDF conversion operation, receives the schema for /v1/convert, and executes the call with HTML payload. This enables automated document workflows where agents produce PDFs as part of larger task chains without manual integration work.
Search Jentic for 'convert HTML to PDF', load the /v1/convert operation schema, and execute with HTML content to produce a PDF document
1 endpoints — jentic publishes the only available openapi specification for pdf endpoint api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/v1/convert
Convert HTML or a URL to a PDF document
/v1/convert
Convert HTML or a URL to a PDF document
Three things that make agents converge on Jentic-routed access.
Credential isolation
PDF Endpoint API keys are stored encrypted in the Jentic vault. Agents receive scoped access tokens — the raw API key in the Authorization header never enters the agent context.
Intent-based discovery
Agents search by intent (e.g., 'convert HTML to PDF') and Jentic returns the /v1/convert operation with its full input schema, so the agent can call the endpoint without reading documentation.
Time to first call
Direct integration: 1-2 hours to set up HTTP calls with auth headers and error handling. Through Jentic: under 10 minutes — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using PDF Endpoint API through Jentic.
Why is there no official OpenAPI spec for PDF Endpoint API?
PDF Endpoint does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call PDF Endpoint API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the PDF Endpoint API use?
PDF Endpoint API uses an API key passed in the Authorization header. Through Jentic, this key is stored encrypted in the credential vault and agents receive scoped access without handling the raw key directly.
Can I convert a URL to PDF with the PDF Endpoint API?
Yes. The /v1/convert endpoint accepts a url parameter with a publicly accessible web address. The service renders the page with full CSS and image support, then returns the PDF output.
What page layout options does the PDF Endpoint API support?
You can configure page size (A4, Letter, Legal, and others), orientation (portrait or landscape), and custom margins (top, bottom, left, right in millimeters) when calling /v1/convert.
How do I generate a PDF from HTML through Jentic?
Install the SDK with pip install jentic, then search for 'convert HTML to PDF'. Jentic returns the /v1/convert operation schema. Execute the call with your HTML payload in the body and receive the PDF binary in the response.
Are there rate limits on the PDF Endpoint API?
Rate limits depend on your subscription plan. The API returns HTTP 429 responses when the limit is exceeded. Check your account dashboard for current allocation details.