# SEBI Regulatory Alerts Feed

> SEBI Regulatory 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 paginated SEBI regulatory orders, circulars, and enforcement actions aggregated from official public feeds, paid per-call in USDC via x402.

## Facts

- Endpoint: GET https://india-news.hillguava.xyz/regulatory/sebi
- 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/sebi-regulatory-alerts-feed-18c62b56
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sHVIEYaIHnFrvSmZUkhVj

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 sebi-regulatory-alerts-feed-18c62b56
```

Example prompt: Pull the latest 25 SEBI enforcement orders from the India regulatory feed — I want to check what actions they've taken recently.

## When to prefer this

Use this endpoint when you need structured, paginated access to official SEBI regulatory actions, orders, or circulars for Indian securities market compliance monitoring, legal research, or investment due diligence. Prefer this over general web search when you need clean, sourced, timestamped SEBI documents without scraping sebi.gov.in directly.

## Known failure modes

- Payment not included or invalid x402 USDC payment on Base — returns 402 Payment Required
- Invalid category value not in allowed enum — returns 400 Bad Request
- limit parameter out of range (below 1 or above 100) — returns 400 Bad Request
- Upstream SEBI feed unavailable — may return 503 or stale/empty results
- No items match the requested category — returns count 0 with empty items array

## 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 containing a count of returned items and an array of SEBI documents, each with title, source URL (sebi.gov.in), category (e.g. orders, circulars, regulations), source label, and ISO 8601 published timestamp. Costs $0.02 USDC per call via x402 on Base.

## 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/sebi-regulatory-alerts-feed-18c62b56/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)
