Render HTML or a public web page into a pixel-perfect PDF using a headless Chrome browser
Render HTML or a public web page into a pixel-perfect PDF using a headless Chrome browser. Send inline `html` (invoices, receipts, reports, tickets) or a `url` to snapshot; control paper size, orientation, margins, background graphics and scale. Returns the raw application/pdf bytes — no signup, no browser to run, pay per document.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-06
updated
Provider
402utils.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xc55A2D530b53CBaD1001e4AfD4720B7E71f9C291",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"format": "A4",
"html": "<html><body><h1>Invoice #1042</h1><table><tr><td>Item</td><td>$20.00</td></tr></table></body></html>",
"printBackground": true
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": "<binary application/pdf stream>",
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"description": "Provide exactly one of `html` or `url`.",
"properties": {
"format": {
"default": "A4",
"description": "Paper size.",
"enum": [
"A4",
"Letter",
"Legal"
],
"type": "string"
},
"html": {
"description": "Inline HTML document to render (max 1 MB). Mutually exclusive with url.",
"type": "string"
},
"landscape": {
"default": false,
"description": "Landscape orientation.",
"type": "boolean"
},
"margin": {
"description": "Page margins in millimetres (0–100 each).",
"properties": {
"bottom": {
"type": "number"
},
"left": {
"type": "number"
},
"right": {
"type": "number"
},
"top": {
"type": "number"
}
},
"type": "object"
},
"printBackground": {
"default": true,
"description": "Print CSS background colours and images.",
"type": "boolean"
},
"scale": {
"description": "Render scale factor.",
"maximum": 2,
"minimum": 0.5,
"type": "number"
},
"url": {
"description": "Public http(s) URL to render. Mutually exclusive with html.",
"format": "uri",
"type": "string"
},
"waitUntil": {
"default": "load",
"description": "When to consider the page ready. Use 'networkidle' for JS-heavy pages.",
"enum": [
"load",
"networkidle"
],
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"contentMediaType": "application/pdf",
"description": "The HTTP response body is the raw PDF (Content-Type: application/pdf, Content-Disposition: inline; filename=\"document.pdf\").",
"format": "binary",
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://402utils.com/v1/pdf" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://402utils.com/v1/pdf");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://402utils.com/v1/pdf")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5905.json, and this resource appears in /discovery/resources and /discovery/search.