PDF Invoice Generator API

What it does

Generates a professional PDF invoice from structured JSON data.

Endpoint

POST https://pdf-invoice-api-x402-689670267582.us-central1.run.app/generate

Price

$0.02 USDC

Request Example

{
  "from": {
    "name": "Company Name"
  },
  "to": {
    "name": "Client Name"
  },
  "items": [
    {
      "name": "Service A",
      "qty": 1,
      "price": 100
    }
  ]
}

Response

Returns the generated invoice as a PDF file binary.