ToolAssay

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

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.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
1463 msmedian answer time
$0.03listed price per call
$0.03price 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://tools.miniframe.com.br/screenshot

CategoryCode and developer
Provider hosttools.miniframe.com.br
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days2 from 2 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.03 1463 ms

Example input (from the provider)

{
  "body": {
    "format": "png",
    "full_page": false,
    "height": 800,
    "url": "https://example.com",
    "width": 1280
  },
  "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": {
          "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\u20132000 (optional).",
              "type": "number"
            },
            "url": {
              "description": "Public http/https URL.",
              "type": "string"
            },
            "width": {
              "description": "Viewport width 320\u20132000 (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"
}

This page as JSON