mirrored listing x402 eip155:84532

Fetch a URL and return clean article text (readability extraction: title, byline, text)

Fetch a URL and return clean article text (readability extraction: title, byline, text). Body: { url: string, maxChars?: number }.

Do you run rook-x402-service.onrender.com? 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
3
calls / 30d
1
unique payers
2026-09-17
updated

Provider

rook-x402-service.onrender.com · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:84532",
    "payTo": "0xF23C807195B18f2c1B993a7489c30a41ffE30730",
    "asset": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
    "amount": "30000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "maxChars": 20000,
          "url": "https://example.com/article"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "byline": null,
          "charCount": 15,
          "finalUrl": "https://example.com/article",
          "siteName": "Example",
          "text": "Article text...",
          "title": "Example article",
          "truncated": false,
          "url": "https://example.com/article"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "maxChars": {
                  "description": "Max characters of extracted text to return (100-100000, default 20000).",
                  "type": "number"
                },
                "url": {
                  "description": "Public http(s) URL to fetch and extract article text from.",
                  "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": {
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://rook-x402-service.onrender.com/v1/read"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://rook-x402-service.onrender.com/v1/read");
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://rook-x402-service.onrender.com/v1/read")
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/7369.json, and this resource appears in /discovery/resources and /discovery/search.