Capture a screenshot of any public web page with a headless Chrome browser
Capture a screenshot of any public web page with a headless Chrome browser. Set the viewport, grab the full scrollable page or just the fold, and choose PNG, JPEG or WebP with an optional quality. Returns the raw image bytes — ideal for link previews, thumbnails, visual monitoring and archiving. No browser to run, pay per capture.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
23 msmedian answer time
$0.008listed price per call
$0.008price 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/screenshot
| Category | Image and media |
|---|---|
| Provider host | 402utils.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 3 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.008 | 23 ms |
Example input (from the provider)
{
"body": {
"format": "png",
"fullPage": true,
"url": "https://example.com"
},
"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": "Screenshot a public http(s) URL.",
"properties": {
"delayMs": {
"description": "Extra wait after load before capturing (animations, lazy content).",
"maximum": 5000,
"minimum": 0,
"type": "integer"
},
"format": {
"default": "png",
"description": "Image format.",
"enum": [
"png",
"jpeg",
"webp"
],
"type": "string"
},
"fullPage": {
"default": false,
"description": "Capture the full scrollable page.",
"type": "boolean"
},
"quality": {
"description": "Compression quality (jpeg/webp only).",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"url": {
"description": "Public http(s) URL to capture (required).",
"format": "uri",
"type": "string"
},
"viewport": {
"description": "Browser viewport in pixels (each side 320\u20132560). Default 1280\u00d7800.",
"properties": {
"height": {
"maximum": 2560,
"minimum": 320,
"type": "integer"
},
"width": {
"maximum": 2560,
"minimum": 320,
"type": "integer"
}
},
"type": "object"
},
"waitUntil": {
"default": "load",
"description": "When to consider the page ready. Use 'networkidle' for JS-heavy pages.",
"enum": [
"load",
"networkidle"
],
"type": "string"
}
},
"required": [
"url"
],
"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": "image/png",
"description": "The HTTP response body is the raw image (Content-Type image/png, image/jpeg or image/webp).",
"format": "binary",
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}