Fetch an RSS 2.0 or Atom feed and return clean JSON
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.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
23 msmedian answer time
$0.002listed price per call
$0.002price 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
GET https://402utils.com/v1/rss-to-json
| Category | Everything else |
|---|---|
| Provider host | 402utils.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 3 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.002 | 23 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"limit": 10,
"url": "https://blog.cloudflare.com/rss/"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$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"
}