Developer Platform
Monetizable Developer APIs
Integrate enterprise-grade PDF parsing, AI-powered summaries, and OCR features directly into your own SaaS platforms.
API Credentials & Usage Dashboard
Use this key to authorize API request cycles securely.
pdftherappy_live_7a3d2e1b9c8f0a2d3e4f5a6b7c
API Endpoints
Playground
curl -X POST "https://api.pdftherappy.com/api/v1/pdf/merge" \
-H "Authorization: Bearer pdftherappy_live_7a3d2e1b9c8f0a2d3e4f5a6b7c" \
-H "Content-Type: application/json" \
-d '{
"files": [
"https://example.com/file1.pdf",
"https://example.com/file2.pdf"
],
"options": {
"optimize": true
}
}'Example Response (200 OK)
{
"status": "success",
"job_id": "job_01h7x8y9z0a1b2c3d4e5f6g7h8",
"download_url": "https://api.pdftherappy.com/downloads/merged_83726.pdf",
"pages": 14,
"size_bytes": 1048576
}