# Tanship PayAI Console — Browser News Fetch

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

Fetches news content via browser automation, gated by USDC micropayment on Base using the x402 protocol

## Facts

- Endpoint: POST https://x402.tanship.dev/v1/browser/news
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tanship-payai-console-browser-news-fetch-757e43a3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PlUoYKvij1ilHmkzAPDK2

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-news-fetch-757e43a3 -d '<json body>'
```

Example prompt: Can you fetch the latest news articles about AI regulation? I want the current headlines and story content, and I'm okay paying a fraction of a cent per call via USDC.

## When to prefer this

Choose this endpoint when you need real-time or live news data fetched via a browser (not a static RSS or news API), want pay-per-call micropayment pricing with no subscription, and are operating in an AI agent pipeline that can handle x402 USDC payments on Base. Prefer over traditional news APIs when avoiding API key management or when the target content requires JavaScript rendering.

## Known failure modes

- Payment rejected or insufficient USDC balance — 402 Payment Required with x402 challenge
- Malformed request body missing required 'input' fields — 400 Bad Request
- Browser automation timeout if target news site is slow or unavailable
- Invalid bodyType enum value causing schema validation failure
- Base network congestion causing payment confirmation delay

## 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 scraped browser output containing news article content, headlines, or structured news data retrieved from the web via an automated browser session.

## 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-news-fetch-757e43a3/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)
