# India News & Regulatory Intel API – Headlines

> India News & Regulatory Intel API – Headlines is a paid API for AI agents from india-news.hillguava.xyz, paid per call via x402, $0.005/call, status down (last checked 2026-09-15).

Returns aggregated Indian business headlines from major finance publishers (Economic Times, Mint, Hindu, NDTV, Business Standard) via a pay-per-call USDC endpoint

## Facts

- Endpoint: GET https://india-news.hillguava.xyz/news/headlines
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/india-news-regulatory-intel-api-headlines-c53e6def
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yhE90ZXuKp5gd74pwXS8k

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-news-regulatory-intel-api-headlines-c53e6def
```

Example prompt: Pull the latest 20 Indian business headlines from all available sources — I want to see what's moving in Indian markets and any SEBI or RBI regulatory news today.

## When to prefer this

Use this endpoint when you need aggregated, multi-publisher Indian financial and business news headlines in a single call, especially when monitoring Indian market movements, SEBI/RBI regulatory activity, or corporate news across Economic Times, Mint, Hindu Business Line, NDTV Profit, and Business Standard. Prefer this over scraping individual publisher sites when you need a unified, structured feed with summaries and timestamps.

## Known failure modes

- Payment not received or insufficient USDC — 402 Payment Required response
- Invalid source key provided — may return empty results or error
- limit parameter outside 1–50 range — schema validation error
- Feed unavailable or stale — reduced item count or empty items array
- Rate limiting or network timeout from upstream publishers

## 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 items returned, an array of headline objects (each with title, link, summary, published timestamp, source key, and source name), and a list of source keys included in the response.

## 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": 50,
       "minimum": 1
      },
      "source": {
       "type": "string",
       "description": "Comma-separated source keys; 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": 20,
  "items": [
   {
    "link": "https://economictimes.indiatimes.com/markets/...",
    "title": "Sensex ends higher led by IT stocks",
    "source": "et",
    "summary": "Benchmark indices closed in the green on ...",
    "published": "2026-07-01T09:12:00Z",
    "source_name": "Economic Times"
   }
  ],
  "sources_returned": [
   "et",
   "mint",
   "hindu",
   "ndtv",
   "bs"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/india-news-regulatory-intel-api-headlines-c53e6def/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)
