# Tanship PayAI Console — Browser RSS Fetch

> Tanship PayAI Console — Browser RSS Fetch is a paid API for AI agents from x402.tanship.dev, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-14).

Fetches and parses RSS feeds via a payment-gated browser automation endpoint using the x402 micropayment protocol

## Facts

- Endpoint: POST https://x402.tanship.dev/v1/browser/rss
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tanship-payai-console-browser-rss-fetch-cb0b937f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W4uI2FQY7yivtRbb8jgo6

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability tanship-payai-console-browser-rss-fetch-cb0b937f -d '<json body>'
```

Example prompt: Can you fetch and parse the latest entries from the RSS feed at https://feeds.example.com/blog.rss and show me the titles and publish dates?

## When to prefer this

Use this endpoint when you need to fetch and parse RSS or Atom feeds programmatically via a micropayment-gated API, especially in agentic workflows that support the x402 payment protocol on Base/USDC. Prefer this over free RSS parsers when you need pay-per-call economics with no subscription, or when integrating with other Tanship PayAI browser automation capabilities.

## Known failure modes

- Invalid or unreachable RSS feed URL returns a fetch/network error
- Malformed or non-RSS XML at the URL may return a parse error
- Missing or failed x402 USDC payment results in a 402 Payment Required response
- Incorrect request body schema returns a 400 validation error
- Rate limiting or server-side blocks on the target RSS host may cause timeouts

## How this service works

Payment-gated AI and browser automation API using the x402 protocol. All /v1/* endpoints require USDC payment on Base (eip155:8453) via x402 v2 exact scheme.

## Output

Returns parsed RSS feed content including feed items with titles, links, publication dates, descriptions, and other standard RSS/Atom fields extracted from the fetched feed URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tanship-payai-console-browser-rss-fetch-cb0b937f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.tanship.dev](https://www.zero.xyz/host/x402.tanship.dev/llms.txt)
