# stockapi.hillguava.xyz NSE/BSE Live Stock Quote

> stockapi.hillguava.xyz NSE/BSE Live Stock Quote is a paid API for AI agents from stockapi.hillguava.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a live stock quote for a given NSE or BSE symbol

## Facts

- Endpoint: GET https://stockapi.hillguava.xyz/stock/:symbol
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stockapi-hillguava-xyz-nse-bse-live-stock-quote-8a8d9e9f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ypthzoiPnSilb5vAPJWc5

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 stockapi-hillguava-xyz-nse-bse-live-stock-quote-8a8d9e9f
```

Example prompt: What's the live stock price for RELIANCE on NSE right now?

## When to prefer this

Use this endpoint when you need a real-time or near-real-time price quote for an Indian equity listed on the NSE or BSE, identified by its ticker symbol such as RELIANCE or TCS. Prefer this over generic financial data APIs when the target market is specifically India (NSE/BSE).

## Known failure modes

- Invalid or unsupported stock symbol returns an error
- Symbol not listed on NSE/BSE returns not found
- Market closed or data feed unavailable may return stale or error response
- Missing symbol path parameter results in a bad request error

## How this service works

Live NSE/BSE stock quote.

## Output

A live stock quote object for the requested NSE/BSE symbol, including current price and related market data fields.

## 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 symbol, e.g. RELIANCE or TCS"
      }
     }
    },
    "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/stockapi-hillguava-xyz-nse-bse-live-stock-quote-8a8d9e9f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stockapi.hillguava.xyz](https://www.zero.xyz/host/stockapi.hillguava.xyz/llms.txt)
