Synchronous HTML to A4 PDF, 0
Synchronous HTML to A4 PDF, 0.020 USDC with seven-day deletion eligibility, not a hard public-access cutoff; asynchronous cleanup and caches may persist. Not renewable. Non-guessable public URL, not private: do not submit sensitive content. HTTP x402 only; no PDF MCP tool or MPP route. Candidate implementation; deployment not verified.
20000 (raw units)
price
5
calls / 30d
1
unique payers
2026-09-09
updated
Provider
api.munition.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x54d6C2C08e10F1a1d3dA88dF513bbE9BCf1A4aFa",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:137",
"payTo": "0x54d6C2C08e10F1a1d3dA88dF513bbE9BCf1A4aFa",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "20000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:42161",
"payTo": "0x54d6C2C08e10F1a1d3dA88dF513bbE9BCf1A4aFa",
"asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"amount": "20000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "CawPXxATKM9iBPc2o6FRzu9LbvzZWcepD9akwZkbDyDo",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"iconUrl": "https://munition.io/logo.png",
"input": {
"body": {
"filename": "report.pdf",
"html": "<h1>Report</h1>"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"bytes": 1000,
"expiresAt": "2026-09-15T00:00:00.000Z",
"id": "pdf_example",
"pages": 1,
"publicUrl": "https://files.munition.io/render/pdf_example-report.pdf",
"renderMs": 100,
"sha256": "0000000000000000000000000000000000000000000000000000000000000000"
},
"type": "json"
},
"serviceName": "Munition",
"tags": [
"storage",
"file-hosting",
"infrastructure"
]
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"filename": {
"description": "Optional filename used for a readable public URL slug, for example invoice-2026-09.pdf. Consecutive dots (..) anywhere are invalid.",
"maxLength": 180,
"minLength": 1,
"type": "string"
},
"html": {
"description": "Self-contained HTML document (UTF-8, up to 1 MiB) with inline CSS. No JavaScript, iframes, forms, <link>, external or relative resources: scripting is disabled and document requests are intercepted/aborted in an offline browser context, not process-wide OS egress isolation. The Chromium sandbox is disabled; process isolation is a deployment concern. Embed images and fonts as data: URIs (png, jpeg, gif, webp, svg, woff/woff2/ttf/otf). Output is A4, up to 20 pages / 10 MiB on successful return, with a 10-second application-level render watchdog budget. Launch, shutdown and cleanup can extend elapsed call time; this is not a hard process-lifetime bound. Page and PDF-byte limits are checked after PDF allocation and do not bound peak memory or CPU.",
"maxLength": 1048576,
"minLength": 1,
"type": "string"
}
},
"required": [
"html"
],
"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": {
"additionalProperties": false,
"properties": {
"bytes": {
"description": "Size of the PDF in bytes.",
"type": "integer"
},
"expiresAt": {
"description": "Seven-day deletion eligibility, not an exact public-access cutoff. Daily cleanup and asynchronous S3 lifecycle deletion may run later; cached responses can persist. No hard deletion deadline is guaranteed. PDF render artifacts are not renewable.",
"format": "date-time",
"type": "string"
},
"id": {
"description": "Munition render id.",
"type": "string"
},
"pages": {
"description": "Number of A4 pages in the PDF.",
"type": "integer"
},
"publicUrl": {
"description": "Non-guessable public files.munition.io URL of the rendered PDF; do not render confidential content. PDF render artifacts are not renewable via direct x402 or MPP upload-renew endpoints, unlike ordinary uploads.",
"format": "uri",
"type": "string"
},
"renderMs": {
"description": "Server-side render time in milliseconds.",
"type": "integer"
},
"sha256": {
"description": "Lowercase hex SHA-256 of the PDF bytes.",
"type": "string"
}
},
"required": [
"id",
"publicUrl",
"expiresAt",
"bytes",
"pages",
"sha256",
"renderMs"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.munition.io/v1/render/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://api.munition.io/v1/render/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://api.munition.io/v1/render/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/8727.json, and this resource appears in /discovery/resources and /discovery/search.