Document workflows,
built into your product.
Automate conversion, compression, page organization and PDF security with one consistent Business API.
Quickstart
Every request starts a secure asynchronous job. Upload a document, poll the job status, then download the finished result before its expiry time.
https://api.pdfprime.dev/v1Your production key and enabled tools are supplied during Business API onboarding.Authentication
Your PDFPrime administrator issues a unique key from Admin → API access. The full secret is displayed once. Send it as a Bearer token, keep it on your server, and never expose it in browser code, mobile bundles or public repositories.
Authorization: Bearer pdfp_live_your_api_key
Accept: application/json/jobs
Create a new document-processing job using multipart form data.
filebinarySource PDF, Office document or image.
toolstringTool identifier such as compress or merge.
optionsJSONOptional tool-specific settings.
curl -X POST "https://api.pdfprime.dev/v1/jobs" \
-H "Authorization: Bearer pdfp_live_your_api_key" \
-F "tool=compress" \
-F "file=@proposal.pdf" \
-F 'options={"level":"recommended"}'{
"id": "job_01JZ8P7B4A",
"status": "processing",
"tool": "compress",
"expires_at": "2026-07-21T13:30:00Z"
}/jobs/{job_id}
Poll until status is complete or failed. Completed jobs include a short-lived signed download URL.
{
"id": "job_01JZ8P7B4A",
"status": "complete",
"output": {
"filename": "proposal-compressed.pdf",
"size": 184220,
"download_url": "https://api.pdfprime.dev/v1/jobs/.../download"
}
}Supported tools
Business access can be scoped to the tools your application needs.
mergesplitcompresspdf-to-jpgjpg-to-pdfword-to-pdfexcel-to-pdfppt-to-pdfrotatewatermarkprotectunlockextract-pagesdelete-pagesreorder-pagesError handling
400invalid_requestA required file, tool or option is invalid.401unauthorizedThe API key is missing, invalid or revoked.413file_too_largeThe upload exceeds your contracted file limit.429rate_limit_exceededRetry after the response’s Retry-After interval.500processing_failedInclude the job ID when contacting support.Limits and volume discounts
Business API limits are sized around monthly document volume, peak throughput, average file size and support level. Higher committed usage receives custom volume pricing.
Pricing aligned to expected document tasks.
Limits designed for your traffic.
Upload size and retention matched to your workflow.
Tell us what you’re building.
We’ll recommend the right limits and prepare volume pricing.