Generates a professional PDF invoice from structured JSON data.
POST https://pdf-invoice-api-x402-689670267582.us-central1.run.app/generate
$0.02 USDC
{
"from": {
"name": "Company Name"
},
"to": {
"name": "Client Name"
},
"items": [
{
"name": "Service A",
"qty": 1,
"price": 100
}
]
}
Returns the generated invoice as a PDF file binary.