Quickstart
Install, provision an API key from Stripe Checkout, and trigger your first render.
- Purchase a plan → receive API key in the dashboard email.
- Call
POST /v1/renderwith an HTML payload or URL. - Monitor your usage at
GET /v1/usage.
curl -X POST https://api.yourdomain.com/v1/render \
-H "authorization: Bearer YOUR_API_KEY" \
-H "content-type: application/json" \
-d '{"html":"<h1>Hello PDF</h1>"}' \
--output hello.pdf