Ganaka
Default
General
Default
General
  1. Collector
  • Developer
    • Collector
      • Save Shortlist
        POST
      • Check holiday
        GET
      • Save Quote
        POST
      • Save NIFTY Quote
        POST
    • Shortlist
      • Persistence
    • Quote Timeline
      GET
    • Quote
      GET
    • NIFTY Timeline
      GET
    • NIFTY
      GET
    • Historical Candles
      GET
    • Token
      GET
    • List
      GET
  • Dashboard
    • Auth
      • Sign In
    • Run
      • Order
        • List Orders
        • Create Order
      • List Runs
      • Create Run
      • Update Run
      • Delete Run
    • Available Datetime
      • List Available Datetimes
    • Candles
      • Candles
    • Daily Persistent Companies
      • Daily Persistent Companies
    • Daily Unique Companies
      • Daily Unique Companies
    • Shortlist
      • Shortlist
    • Quote Timeline
      • Quote Timeline
  • Admin
    • Developer
      • List Developers
      • Developer By Id
      • Create Developer
      • Refresh Developer Key
      • Delete Developer
    • Holidays
      • List Holidays
      • Create Holiday
      • Delete Holiday
    • Data
      • List dates with data
      • Delete all data for date
    • DB Scripts
      POST
  • Health
    GET
Default
General
Default
General
  1. Collector

Save Quote

Production
https://api.ganaka.live
Production
https://api.ganaka.live
POST
/{api_version}/developer/collector/quotes
Generated from cURL: curl -X POST "https://api.ganaka.live/v1/developer/collector/quotes"
-H "Content-Type: application/json"
-H "Authorization: Bearer YOUR_DEVELOPER_TOKEN"
-d '{
"data": {
"timestamp": "2025-12-31T09:15:00",
"timezone": "UTC",
"quotes": [
{
"nseSymbol": "RELIANCE",
"quoteData": {
"status": "SUCCESS",
"payload": {
"last_price": 2500.0,
"day_change_perc": 1.5,
"volume": 1000000,
"ohlc": {
"open": 2480.0,
"high": 2520.0,
"low": 2470.0,
"close": 2500.0
}
}
}
}
]
}
}'

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Header Params

Body Params application/json

Examples

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'https://api.ganaka.live/{{api_version}}/developer/collector/quotes' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
  "data": {
    "timestamp": "2025-12-31T09:15:00",
    "timezone": "etc/UTC",
    "quotes": [
      {
        "nseSymbol": "RELIANCE",
        "quoteData": {
          "status": "SUCCESS",
          "payload": {
            "average_price": 2450.75,
            "bid_quantity": 150,
            "bid_price": 2448.5,
            "day_change": 25.3,
            "day_change_perc": 1.05,
            "upper_circuit_limit": 2800,
            "lower_circuit_limit": 2100,
            "ohlc": {
              "open": 2425,
              "high": 2475.5,
              "low": 2410.25,
              "close": 2450.75
            },
            "depth": {
              "buy": [
                {
                  "price": 2448.5,
                  "quantity": 150
                },
                {
                  "price": 2447.25,
                  "quantity": 200
                },
                {
                  "price": 2446,
                  "quantity": 175
                },
                {
                  "price": 2444.75,
                  "quantity": 300
                },
                {
                  "price": 2443.5,
                  "quantity": 125
                }
              ],
              "sell": [
                {
                  "price": 2450,
                  "quantity": 180
                },
                {
                  "price": 2451.25,
                  "quantity": 220
                },
                {
                  "price": 2452.5,
                  "quantity": 160
                },
                {
                  "price": 2453.75,
                  "quantity": 190
                },
                {
                  "price": 2455,
                  "quantity": 140
                }
              ]
            },
            "high_trade_range": null,
            "implied_volatility": null,
            "last_trade_quantity": 50,
            "last_trade_time": 1704038400000,
            "low_trade_range": null,
            "last_price": 2450.75,
            "market_cap": null,
            "offer_price": null,
            "offer_quantity": null,
            "oi_day_change": 1250,
            "oi_day_change_percentage": 2.35,
            "open_interest": 54250,
            "previous_open_interest": null,
            "total_buy_quantity": 950,
            "total_sell_quantity": 890,
            "volume": 125000,
            "week_52_high": 2650,
            "week_52_low": 1850.25
          }
        }
      }
    ]
  }
}'
Response Response Example
{}
Modified at 2026-01-31 13:45:04
Previous
Check holiday
Next
Save NIFTY Quote
Built with