ToolAssay

Batch page-meta for 1–10 public URLs in one payment

Batch page-meta for 1–10 public URLs in one payment. POST JSON {"urls":["https://example.com"]}. Returns {results:[{url,ok:true,meta}|{url,ok:false,error}]}. Each meta has title, description, canonical, ogImage, language, and a ~500-character excerpt. One URL failing does not fail the batch. $0.15 USDC on Base (eip155:8453). No API key.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
715 msmedian answer time
$0.15listed price per call
$0.15price 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://scrooge-x402-tool-mill.vercel.app/v1/batch-meta

CategoryEverything else
Provider hostscrooge-x402-tool-mill.vercel.app
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.15 715 ms

Example input (from the provider)

{
  "body": {
    "urls": [
      "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": {
          "additionalProperties": false,
          "properties": {
            "urls": {
              "description": "1\u201310 public http(s) URLs",
              "items": {
                "description": "Public http(s) URL to fetch (SSRF-safe; private/link-local blocked)",
                "format": "uri",
                "type": "string"
              },
              "maxItems": 10,
              "minItems": 1,
              "type": "array"
            }
          },
          "required": [
            "urls"
          ],
          "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": {
            "results": {
              "items": {
                "oneOf": [
                  {
                    "additionalProperties": false,
                    "properties": {
                      "meta": {
                        "additionalProperties": false,
                        "properties": {
                          "canonical": {
                            "description": "Absolute canonical URL, or null",
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "description": {
                            "description": "Meta description, or null",
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "excerpt": {
                            "description": "Whitespace-collapsed plaintext excerpt (~500 characters; ellipsis if truncated), or null",
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "language": {
                            "description": "html lang or content-language, or null",
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "ogImage": {
                            "description": "Absolute Open Graph or Twitter image URL, or null",
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "title": {
                            "description": "HTML title, or null",
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "required": [
                          "title",
                          "description",
                          "canonical",
                          "ogImage",
                          "language",
                          "excerpt"
                        ],
                        "type": "object"
                      },
                      "ok": {
                        "const": true,
                        "type": "boolean"
                      },
                      "url": {
                        "description": "The URL that was requested",
                        "format": "uri",
                        "type": "string"
                      }
                    },
                    "required": [
                      "url",
                      "ok",
                      "meta"
                    ],
                    "type": "object"
                  },
                  {
                    "additionalProperties": false,
                    "properties": {
                      "error": {
                        "description": "Why this URL failed; other rows still return",
                        "type": "string"
                      },
                      "ok": {
                        "const": false,
                        "type": "boolean"
                      },
                      "url": {
                        "format": "uri",
                        "type": "string"
                      }
                    },
                    "required": [
                      "url",
                      "ok",
                      "error"
                    ],
                    "type": "object"
                  }
                ]
              },
              "maxItems": 10,
              "minItems": 1,
              "type": "array"
            }
          },
          "required": [
            "results"
          ],
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON