mirrored listing x402 eip155:8453

Use when the user needs to see a page as it actually renders — visual proof, a preview, a

Use when the user needs to see a page as it actually renders — visual proof, a preview, a layout check, or a record of what a page showed. Takes a screenshot with a headless browser (rendering JavaScript). JSON body { url } (public http/https); optional full_page (default false), width (320–2000, default 1280), height (240–2000, default 800), format png|jpeg (default png). Returns image_base64. Private/internal targets are blocked.

Do you run tools.miniframe.com.br? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
30000 (raw units)
price
2
calls / 30d
2
unique payers
2026-08-30
updated

Provider

tools.miniframe.com.br · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x879933456986877f5d87e6ee24d1e0ebd264f527",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "30000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "format": "png",
          "full_page": false,
          "height": 800,
          "url": "https://example.com",
          "width": 1280
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "format": "png",
          "full_page": false,
          "height": 800,
          "image_base64": "iVBORw0KGgo...",
          "width": 1280
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "format": {
                  "description": "Image format (optional).",
                  "enum": [
                    "png",
                    "jpeg"
                  ],
                  "type": "string"
                },
                "full_page": {
                  "description": "Capture full scrollable page (optional).",
                  "type": "boolean"
                },
                "height": {
                  "description": "Viewport height 240–2000 (optional).",
                  "type": "number"
                },
                "url": {
                  "description": "Public http/https URL.",
                  "type": "string"
                },
                "width": {
                  "description": "Viewport width 320–2000 (optional).",
                  "type": "number"
                }
              },
              "required": [
                "url"
              ]
            },
            "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": {
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://tools.miniframe.com.br/screenshot"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://tools.miniframe.com.br/screenshot");
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://tools.miniframe.com.br/screenshot")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/4752.json, and this resource appears in /discovery/resources and /discovery/search.