ToolAssay

Render HTML or a public web page into a pixel-perfect PDF using a headless Chrom

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.

Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.01listed price per call
n/aprice it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://402utils.com/v1/pdf

CategorySearch and research
Provider host402utils.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

We never call tools that send, buy, move money or file anything, not even without paying.

Example input (from the provider)

{
  "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"
}

Promised output schema (from the provider)

{
  "$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\u2013100 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"
}

This page as JSON