mirrored listing x402 eip155:8453

Fetch any RSS or Atom feed and get normalized JSON items — title, link, ISO-8601 date, pla

Fetch any RSS or Atom feed and get normalized JSON items — title, link, ISO-8601 date, plain-text summary, author, categories. Point it at a regular HTML page and it auto-discovers the feed. RSS 2.0, RSS 1.0/RDF and Atom, messy real-world feeds included. The monitoring primitive for agents that watch sources.

Do you run agentbit.app? 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
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-06
updated

Provider

agentbit.app · discovered, not yet claimed by its owner

Payment (x402 accepts[])

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

Output schema

{
  "bazaar": {
    "info": {
      "description": "Feed reading for monitoring agents. RSS and Atom remain the web's most reliable change-notification layer — blogs, news sites, release pages, status pages, podcasts and forums all publish them — but real-world feeds are a mess of formats, encodings and broken dates. This tool fetches a feed URL (SSRF-guarded), parses RSS 2.0, RSS 1.0/RDF and Atom including Dublin Core extensions, and returns uniform JSON items: whitespace-normalized title, resolved link, publication date converted to ISO-8601, summary stripped to plain text and capped at 1000 characters, author and categories. Given an HTML page instead of a feed, it reads the page's advertised alternate links and follows the first RSS/Atom one automatically — so agents can monitor 'that blog' without knowing its feed URL. Up to 50 items per call. Pair with structured-extract to find all of a site's feeds, and call on a schedule to turn any site into an event source.",
      "errors": [
        {
          "code": "PAYMENT_REQUIRED",
          "description": "Missing or invalid payment — retry with a valid PAYMENT-SIGNATURE header",
          "retryable": true,
          "status": 402
        },
        {
          "code": "VALIDATION_ERROR",
          "description": "Request body does not match the input schema",
          "retryable": false,
          "status": 422
        },
        {
          "code": "RATE_LIMITED",
          "description": "Too many requests from this client",
          "retryable": true,
          "status": 429
        },
        {
          "code": "UPSTREAM_TIMEOUT",
          "description": "Upstream data source unavailable — safe to retry",
          "retryable": true,
          "status": 502
        }
      ],
      "input": {
        "body": {
          "limit": 5,
          "url": "https://blog.cloudflare.com/rss/"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "networks": [
        "eip155:8453"
      ],
      "output": {
        "example": {
          "discovered_from": null,
          "feed_title": "The Cloudflare Blog",
          "feed_url": "https://blog.cloudflare.com/rss/",
          "format": "rss",
          "item_count": 5,
          "items": [
            {
              "author": "Jane Doe",
              "categories": [
                "engineering"
              ],
              "link": "https://blog.cloudflare.com/example",
              "published": "2026-09-05T14:00:00+00:00",
              "summary": "Post summary text.",
              "title": "Example post"
            }
          ]
        },
        "type": "json"
      },
      "pricing": {
        "amount": 0.005,
        "currency": "USDC",
        "firstCallFree": true,
        "model": "per-call",
        "quoteHint": "Send your wallet address in an X-BUYER-WALLET header on the unpaid request to receive your personalized (volume-discounted) quote.",
        "volumeDiscounts": [
          {
            "minCalls30d": 100,
            "percent": 10
          },
          {
            "minCalls30d": 1000,
            "percent": 20
          }
        ]
      },
      "reliability": {
        "measuredAt": "2026-09-06T13:16:54+00:00",
        "p50LatencyMs": 39,
        "p95LatencyMs": 39,
        "sampleSize": 1,
        "successRatePercent": 100,
        "windowDays": 30
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "description": {
          "type": "string"
        },
        "errors": {
          "items": {
            "properties": {
              "code": {
                "type": "string"
              },
              "description": {
                "type": "string"
              },
              "retryable": {
                "type": "boolean"
              },
              "status": {
                "type": "integer"
              }
            },
            "required": [
              "status",
              "code"
            ],
            "type": "object"
          },
          "type": "array"
        },
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "description": "Feed Reader input. Fetch any RSS or Atom feed and get normalized JSON items — title, link, ISO-8601 date, plain-text summary, author, categories. Point it at a regular HTML page and it auto-discovers the feed. RSS 2.0, RSS 1.0/RDF and Atom, messy real-world feeds included. The monitoring primitive for agents that watch sources.",
              "properties": {
                "limit": {
                  "description": "Max items to return (1-50, default 20)",
                  "type": "integer"
                },
                "url": {
                  "description": "Feed URL, or an HTML page URL to auto-discover the feed from",
                  "type": "string"
                }
              },
              "required": [
                "url"
              ],
              "type": "object"
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "headers": {
              "additionalProperties": {
                "type": "string"
              },
              "type": "object"
            },
            "method": {
              "enum": [
                "POST",
                "PUT",
                "PATCH"
              ],
              "type": "string"
            },
            "queryParams": {
              "additionalProperties": {
                "type": "string"
              },
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "type": "object"
        },
        "networks": {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        "output": {
          "properties": {
            "example": {
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        },
        "pricing": {
          "properties": {
            "amount": {
              "type": [
                "number",
                "null"
              ]
            },
            "currency": {
              "type": "string"
            },
            "firstCallFree": {
              "type": "boolean"
            },
            "maxAmount": {
              "type": "number"
            },
            "model": {
              "type": "string"
            },
            "quoteHint": {
              "type": "string"
            },
            "volumeDiscounts": {
              "items": {
                "properties": {
                  "minCalls30d": {
                    "type": "integer"
                  },
                  "percent": {
                    "type": "number"
                  }
                },
                "required": [
                  "minCalls30d",
                  "percent"
                ],
                "type": "object"
              },
              "type": "array"
            }
          },
          "type": "object"
        },
        "reliability": {
          "properties": {
            "measuredAt": {
              "type": "string"
            },
            "p50LatencyMs": {
              "type": [
                "integer",
                "null"
              ]
            },
            "p95LatencyMs": {
              "type": [
                "integer",
                "null"
              ]
            },
            "sampleSize": {
              "type": "integer"
            },
            "successRatePercent": {
              "type": "number"
            },
            "windowDays": {
              "type": "integer"
            }
          },
          "required": [
            "successRatePercent",
            "sampleSize",
            "windowDays"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://agentbit.app/v1/web/feed"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://agentbit.app/v1/web/feed");
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://agentbit.app/v1/web/feed")
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/10989.json, and this resource appears in /discovery/resources and /discovery/search.