# India News by Ticker (NSE/BSE)

> India News by Ticker (NSE/BSE) is a paid API for AI agents from india-news.hillguava.xyz, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Returns stock-specific news articles aggregated from Indian finance publishers for a given NSE/BSE ticker symbol.

## Facts

- Endpoint: GET https://india-news.hillguava.xyz/news/ticker/:symbol
- Price: $0.01/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-by-ticker-nse-bse-4ad1c159
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Iir201tBqEpVF2eyi-Mow

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-by-ticker-nse-bse-4ad1c159
```

Example prompt: Pull the latest news for RELIANCE from Indian finance publishers — I want to see what's been reported about it on NSE recently.

## When to prefer this

Use this endpoint when you need stock-specific news aggregated from Indian financial media for a particular NSE or BSE-listed company. Prefer this over general news APIs when the query is specifically about Indian equity markets and you have a known ticker symbol.

## Known failure modes

- Invalid or unknown ticker symbol returns empty results or 404
- Ticker symbol not listed on NSE/BSE may return no articles
- Payment failure (x402) prevents access to results
- Rate limiting or temporary publisher outage may cause stale or missing data

## How this service works

Stock-specific news for an NSE/BSE ticker symbol, aggregated from India finance publishers.

## Output

A collection of news articles or headlines specific to the requested NSE/BSE ticker, sourced from Indian finance publishers, likely including article titles, summaries, sources, and publication timestamps.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "NSE/BSE ticker symbol, e.g. RELIANCE"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/india-news-by-ticker-nse-bse-4ad1c159/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)
