FatBabyAPI

PDF API

Convert, manipulate, OCR, extract, and generate PDFs with one API key and the same credit wallet.

Capabilities

37 live operations. Async jobs use GET /v1/jobs/:id.

Quick example

Merge two PDFs, then poll the job.

curl -X POST https://thefatbaby.com/api/v1/pdf/merge \
  -H "Authorization: Bearer fb_live_YOUR_KEY" \
  -F "files=@a.pdf" -F "files=@b.pdf"
# → { "job": { "id": "JOB_ID", "status": "queued" } }

curl https://thefatbaby.com/api/v1/jobs/JOB_ID \
  -H "Authorization: Bearer fb_live_YOUR_KEY"
PDF API · FatBaby API