# India Data Gateway – RBI Regulatory Alerts

> India Data Gateway – RBI Regulatory Alerts is a paid API for AI agents from gateway.hillguava.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches recent RBI (Reserve Bank of India) regulatory alerts including press releases, notifications, and defaulter lists

## Facts

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

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 india-data-gateway-rbi-regulatory-alerts-facaf911
```

Example prompt: Pull the latest RBI press releases — give me up to 20 of the most recent ones so I can see what the central bank has announced.

## When to prefer this

Choose this endpoint when you need structured, up-to-date RBI regulatory content (press releases, circulars, defaulter lists) without signing up for an API key or managing rate limits. It is ideal for AI agents that need Indian macroeconomic or compliance data on demand and settle per-call in USDC via x402. Prefer over web scraping RBI directly or managing your own RBI data pipeline.

## Known failure modes

- Invalid 'type' query parameter value returns an error or empty results
- limit out of range (below 1 or above 100) may return validation error
- RBI source unavailable causing stale or empty response
- Payment failure via x402 if USDC balance is insufficient

## How this service works

The India data layer for AI agents. Pay only for the calls you make — no API keys, no accounts, no minimums, no rate limits. One x402 origin covering Indian weather (forecasts, monsoon), markets (stocks, indices, F&O with Black-Scholes Greeks, historical, mutual funds), RBI macro, identity/format verification (IFSC, pincode, GSTIN), NSE market holidays, panchang (Hindu almanac), and live cricket scores. Settle per call in USDC on Base.

## Output

A JSON object with a count field and an items array, where each item includes a title (e.g. 'RBI keeps repo rate unchanged at 6.50%'), a link to the original RBI page, the source category (press_releases, notifications, or defaulter), and a published ISO 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/india-data-gateway-rbi-regulatory-alerts-facaf911/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gateway.hillguava.xyz](https://www.zero.xyz/host/gateway.hillguava.xyz/llms.txt)
