Quickstart

Install, provision an API key from Stripe Checkout, and trigger your first render.

  1. Purchase a plan → receive API key in the dashboard email.
  2. Call POST /v1/render with an HTML payload or URL.
  3. 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