# RBI Alerts Feed

> RBI Alerts Feed is a paid API for AI agents from india-news.hillguava.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches Reserve Bank of India (RBI) regulatory alerts including press releases, notifications, and defaulter notices from official RBI public feeds.

## Facts

- Endpoint: GET https://india-news.hillguava.xyz/regulatory/rbi-alerts
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rbi-alerts-feed-f0688413
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_isJisD37z81W2xnOPsRgI

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 rbi-alerts-feed-f0688413
```

Example prompt: Pull the latest RBI press releases — give me up to 20 of them — so I can check if there are any new monetary policy or repo rate announcements.

## When to prefer this

Use this endpoint when you need structured, up-to-date RBI regulatory alerts (press releases, notifications, defaulter lists) without scraping the RBI website yourself. Prefer it over general India news endpoints when the user specifically needs central bank or banking-regulator content rather than broader business headlines or stock-specific news.

## Known failure modes

- Payment not received or insufficient USDC — 402 Payment Required response
- Invalid type parameter value (not one of press_releases, notifications, defaulter) — 400 Bad Request
- limit parameter out of range (< 1 or > 100) — 400 validation error
- RBI source feed temporarily unavailable — 503 or empty items array
- Network timeout if RBI public feed is slow to respond

## How this service works

Pay-per-call India news and regulatory intelligence: aggregated business headlines, stock-specific news, and SEBI/RBI regulatory alerts. Powered by x402 — pay in USDC on Base. All sources are public feeds.

## Output

A JSON object with a count field and an items array; each item contains the RBI alert title, a direct link to the RBI website, the source category (press_releases, notifications, or defaulter), and the UTC published timestamp.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "type": {
       "type": "string",
       "description": "press_releases|notifications|defaulter; omit for all"
      },
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 25,
  "items": [
   {
    "link": "https://www.rbi.org.in/...",
    "title": "RBI keeps repo rate unchanged at 6.50%",
    "source": "press_releases",
    "published": "2026-07-01T05:30:00Z"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rbi-alerts-feed-f0688413/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from india-news.hillguava.xyz](https://www.zero.xyz/host/india-news.hillguava.xyz/llms.txt)
