Fetch an RSS 2
Fetch an RSS 2.0 or Atom feed and return clean JSON: feed title, link and description, plus items with title, link, ISO-8601 publishedAt, summary and author. Handles both formats and normalises the dates. The caller-supplied URL is SSRF-checked; the fetch is capped at 2 MB and 8 s.
2000 (raw units)
price
4
calls / 30d
2
unique payers
2026-09-05
updated
Provider
402utils.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xc55A2D530b53CBaD1001e4AfD4720B7E71f9C291",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "2000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": 10,
"url": "https://blog.cloudflare.com/rss/"
},
"type": "http"
},
"output": {
"example": {
"items": [
{
"link": "https://blog.cloudflare.com/a-post/",
"publishedAt": "2026-07-01T10:00:00.000Z",
"title": "A post"
}
],
"link": "https://blog.cloudflare.com/",
"title": "The Cloudflare Blog"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"description": "Query string only.",
"properties": {
"limit": {
"default": 50,
"description": "Max items.",
"maximum": 200,
"minimum": 1,
"type": "integer"
},
"url": {
"description": "Public http(s) feed URL (required).",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"description": {
"type": "string"
},
"items": {
"items": {
"properties": {
"author": {
"type": "string"
},
"link": {
"type": "string"
},
"publishedAt": {
"format": "date-time",
"type": "string"
},
"summary": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"link"
],
"type": "object"
},
"type": "array"
},
"link": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"link",
"items"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://402utils.com/v1/rss-to-json" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://402utils.com/v1/rss-to-json");
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://402utils.com/v1/rss-to-json")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5894.json, and this resource appears in /discovery/resources and /discovery/search.