{"uid":"cap_8uGHQQy-JHJsxElm875Sn","slug":"x402-feed-parser-d7c5091a","name":"X402 Feed Parser","description":"Pay-per-request data tools for AI agents.","url":"https://x402.feld-feder.at/v1/feed/parse","method":"POST","headers":{},"bodySchema":{"type":"object","$schema":"https://json-schema.org/draft/2020-12/schema","required":["input"],"properties":{"input":{"type":"object","required":["type","method","bodyType","body"],"properties":{"body":{"type":"object","title":"WebUrlRequest","required":["url"],"properties":{"url":{"type":"string","title":"Url","maxLength":4096,"minLength":1}},"additionalProperties":false},"type":{"type":"string","const":"http"},"method":{"enum":["POST","PUT","PATCH"],"type":"string"},"bodyType":{"enum":["json","form-data","text"],"type":"string"}},"additionalProperties":false},"output":{"type":"object","required":["type"],"properties":{"type":{"type":"string"},"example":{"type":"object","title":"ResponseEnvelope[FeedToolDocument]","required":["data"],"properties":{"ok":{"type":"boolean","const":true,"title":"Ok","default":true},"data":{"type":"object","title":"FeedToolDocument","required":["format","title","home_url","description","entries"],"properties":{"title":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Title"},"format":{"enum":["atom","rss","feed"],"type":"string","title":"Format"},"entries":{"type":"array","items":{"type":"object","title":"FeedToolEntry","required":["id","title","url","summary","published"],"properties":{"id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Id"},"url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url"},"title":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Title"},"summary":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Summary"},"published":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Published"}},"additionalProperties":false},"title":"Entries"},"home_url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Home Url"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"}},"additionalProperties":false},"cache":{"anyOf":[{"type":"object","title":"CacheInfo","required":["hit"],"properties":{"hit":{"type":"boolean","title":"Hit"},"age_seconds":{"type":"integer","title":"Age Seconds","default":0,"minimum":0}}},{"type":"null"}],"default":null},"source":{"anyOf":[{"type":"object","title":"SourceInfo","required":["requested_url","final_url","retrieved_at"],"properties":{"final_url":{"type":"string","title":"Final Url"},"status_code":{"anyOf":[{"type":"integer","maximum":599,"minimum":100},{"type":"null"}],"title":"Status Code","default":null},"content_hash":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Content Hash","default":null},"content_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Content Type","default":null},"retrieved_at":{"type":"string","title":"Retrieved At","format":"date-time"},"requested_url":{"type":"string","title":"Requested Url"},"redirect_count":{"anyOf":[{"type":"integer","minimum":0},{"type":"null"}],"title":"Redirect Count","default":null}}},{"type":"null"}],"default":null},"_payment":{"anyOf":[{"type":"object","title":"PaymentInfo","required":["amount_usdc","network"],"properties":{"network":{"type":"string","title":"Network"},"amount_usdc":{"anyOf":[{"type":"number","minimum":0},{"type":"string","pattern":"^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$"}],"title":"Amount Usdc"},"transaction":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Transaction","default":null}}},{"type":"null"}],"default":null},"warnings":{"type":"array","items":{"type":"object","title":"WarningInfo","required":["code","message"],"properties":{"code":{"type":"string","title":"Code"},"message":{"type":"string","title":"Message"}}},"title":"Warnings"},"provenance":{"type":"array","items":{"type":"string"},"title":"Provenance"}}}}}}},"responseSchema":{"type":"json","example":{"ok":true,"data":{"title":"Example feed","format":"rss","entries":[],"home_url":"https://example.com","description":null}}},"example":null,"exampleRequest":null,"tags":["x402"],"displayCostAmount":"0.002","displayCostAsset":"USDC","priceDynamic":false,"priceHint":null,"priceStatus":"priced","priceSource":"registry","requiresHandshake":false,"reviewCount":0,"rating":{"score":"0.00","successRate":"0.00","reviews":0,"stars":null,"state":"unrated"},"availabilityStatus":"down","priceObserved":null,"sessionDeposit":null,"pricing":{"kind":"static","summary":"$0.002/call","primary":{"kind":"static","protocol":"x402","network":"base","amountUsd":"0.002","per":"call","confidence":"exact"},"accepted":[{"kind":"static","protocol":"x402","network":"base","amountUsd":"0.002","per":"call","confidence":"exact"}]},"paymentMethods":[{"uid":"pm_MWYFiw6PFx3ll56QFCrlK","protocol":"x402","methodType":"crypto","chain":"base","mode":"charge","costAmount":"0.002","costPer":"request","priority":0,"asset":null,"unit":"request","depositMicros":null,"planRef":null}],"brandName":null,"brandSlug":null,"brandBaseUrl":null,"brandDocsUrl":null,"whatItDoes":"Parses a web feed URL (RSS/Atom) and returns structured feed metadata and entries, billed per-request via x402 micropayments.","exampleAgentPrompt":"Can you parse the RSS feed at https://feeds.arstechnica.com/arstechnica/index and give me the feed title, format, and latest entries?","exampleUseCases":[{"title":"News feed ingestion for AI summarizer","prompt":"Fetch and parse the RSS feed at https://rss.nytimes.com/services/xml/rss/nyt/Technology.xml so I can see the latest article titles and links."},{"title":"Podcast feed metadata extraction","prompt":"Parse the podcast feed at https://feeds.simplecast.com/54nAGcIl and tell me the show title, description, and the most recent episodes listed."},{"title":"Blog monitoring for content pipeline","prompt":"Pull the Atom or RSS feed from https://blog.openai.com/rss and return the feed format, home URL, and all available entries so I can track new posts."}],"resultDescription":"Returns a JSON object with ok: true and a data object containing the feed title, detected format (rss/atom), list of entries, home URL, and description (if available). Entries typically include item titles, links, and publication dates.","failureModes":["Invalid or unreachable feed URL returns an error response","Non-feed URLs (HTML pages) may fail to parse and return an error","Malformed XML in the feed may cause parse failures","Payment failure via x402 protocol blocks the request","Rate limits or timeouts on the remote feed server cause fetch failures"],"whenToPreferThis":"Use this endpoint when an AI agent needs to programmatically ingest and structure an RSS or Atom feed from a URL, especially in automated pipelines where pay-per-use micropayment billing via x402 is acceptable. Prefer over building a custom fetcher when you need immediate structured output (title, entries, format, home URL) without managing a feed-parsing library yourself.","instructions":null,"reviewSummary":null,"reviewSummaryHighlights":null,"reviewSummaryConcerns":null,"reviewSummaryGeneratedAt":null,"activationCount":0,"lastUsedAt":null,"lastSuccessfullyRanAt":null,"lastHealthCheckAt":"2026-09-16T01:29:01.385Z","isFirstParty":false}