Render a public URL or an HTML string in headless Chromium and return a PNG, JPEG or PDF (
Render a public URL or an HTML string in headless Chromium and return a PNG, JPEG or PDF (base64). Viewport, full-page, device scale and paper size are caller-controlled.
10000 (raw units)
price
—
calls / 30d
—
unique payers
2026-09-21
updated
Provider
Quietforge Docs API · verified
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3F5115236f25618c16021E983acaAF2CAaa1A35e",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"type": "object",
"properties": {
"format": {
"type": "string"
},
"content_type": {
"type": "string"
},
"bytes": {
"type": "integer"
},
"width": {
"type": "integer"
},
"height": {
"type": "integer"
},
"final_url": {
"type": "string"
},
"title": {
"type": "string"
},
"blocked_requests": {
"type": "integer",
"description": "Sub-requests refused because they pointed at a non-public host or scheme"
},
"content_base64": {
"type": "string"
},
"elapsed_ms": {
"type": "integer"
}
},
"required": [
"format",
"content_type",
"bytes",
"content_base64"
]
}Use it
curl
curl "https://qf-api.quietforge-studio.workers.dev/v1/render" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://qf-api.quietforge-studio.workers.dev/v1/render");
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://qf-api.quietforge-studio.workers.dev/v1/render")
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/15745.json, and this resource appears in /discovery/resources and /discovery/search.