ApiSkills

Stock Market

scope: stocks:read

Tickers, daily OHLCV candles, and a model portfolio of holdings.

Tickers /tickers

6 rows

Flat reference list of instruments.

Fields

tickerexchangesector

Sample row

{
  "ticker": "RELI",
  "exchange": "NSE",
  "sector": "Energy"
}

Request

curl "https://api.ifsjaipur.cloud/playground/data/stocks/tickers?shape=flat&page_size=50" \
  -H "x-api-key: YOUR_API_KEY"

Daily Candles (OHLCV) /candles

720 rows

Daily OHLCV per ticker; nestable by ticker.

Fields

tickerexchangesectordateopenhighlowclosevolume

Sample row

{
  "ticker": "RELI",
  "exchange": "NSE",
  "sector": "Energy",
  "date": "2024-01-01",
  "open": 2400,
  "high": 2424,
  "low": 2352.24,
  "close": 2376,
  "volume": 1340021
}

Request

curl "https://api.ifsjaipur.cloud/playground/data/stocks/candles?shape=flat&page_size=50" \
  -H "x-api-key: YOUR_API_KEY"

Nestable by ticker — try ?shape=nested or ?shape=nested-list.

Portfolio Holdings /holdings

6 rows

Positions in the model portfolio; nestable by sector.

Fields

portfoliotickersectorquantityavg_priceinvested

Sample row

{
  "portfolio": "model-portfolio",
  "ticker": "RELI",
  "sector": "Energy",
  "quantity": 346,
  "avg_price": 2376,
  "invested": 822096
}

Request

curl "https://api.ifsjaipur.cloud/playground/data/stocks/holdings?shape=flat&page_size=50" \
  -H "x-api-key: YOUR_API_KEY"

Nestable by sector — try ?shape=nested or ?shape=nested-list.