# India Data Gateway – SEBI Regulatory Feed

> India Data Gateway – SEBI Regulatory Feed 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 SEBI (Securities and Exchange Board of India) regulatory documents including orders, circulars, and regulations

## Facts

- Endpoint: GET https://gateway.hillguava.xyz/regulatory/sebi
- 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-sebi-regulatory-feed-2f96d562
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OSx56Xc8KZfmtnp_D1S_F

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-sebi-regulatory-feed-2f96d562
```

Example prompt: Can you pull the latest 10 SEBI enforcement orders from the India Data Gateway regulatory feed?

## When to prefer this

Choose this endpoint when you need structured, paginated access to SEBI regulatory documents (orders, circulars, regulations) without setting up API keys or accounts. It is ideal for AI agents that need to monitor Indian securities regulation on a pay-per-call basis in USDC. Prefer this over direct SEBI web scraping when you need clean JSON output and reliable categorization.

## Known failure modes

- Invalid category value returns an error or empty results
- limit parameter out of range (below 1 or above 100) triggers validation error
- Payment not settled in USDC on Base causes 402 response
- SEBI source temporarily unavailable may return stale or empty data
- Network timeout if upstream SEBI portal is slow

## 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

Returns a JSON object with a count of items and a list of SEBI regulatory documents, each containing a title, direct link to the SEBI website, source identifier, category (e.g. orders, circulars, regulations), and ISO 8601 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": {
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      },
      "category": {
       "type": "string",
       "description": "orders|circulars|regulations|... ; omit for all"
      }
     }
    }
   },
   "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.sebi.gov.in/enforcement/orders/...",
    "title": "Final Order in the matter of XYZ Ltd",
    "source": "sebi",
    "category": "orders",
    "published": "2026-07-01T08:30:00Z"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/india-data-gateway-sebi-regulatory-feed-2f96d562/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)
