GetQuote

To get characters you need to make a POST call to the following url : https://amapi.algomojo.com/v1/GetQuote

Note: Broker rate limits apply when using this API. Continuous access may result in the source being blocked.

QUERY PARAMETERS

Request ParameterDescriptionMandatory

broker

Broker code

Yes

symbol

Symbol

Yes

exchange

Exchange

Yes

# Here is a curl example
-X POST https://amapi.algomojo.com/v1/GetQuote

Request example :
{
"api_key":"your_api_key",
"api_secret":"your_api_secret",
"data":
{
 "broker":"fs",
 "symbol":"YESBANK",
 "exchange":"NSE"
}
}

Response example:
{
"status": "success",
"data": {
 "symbol_name": "YESBANK",
 "trading_symbl": "YESBANK-EQ",
 "company_name": "YES BANK LIMITED",
 "last_trade_time": "06/01/2022 15:59:58",
 "last_price": 14.25,
 "change": 00.00,
 "change_per": 00.00,
 "last_quantity": 4,
 "buy_quantity": 4,
 "sell_quantity": 303792,
 "volume": 125481711,
 "average_price": 14.26,
 "open": 14.25,
 "high": 14.45,
 "low": 14.10,
 "close": 14.25,
 "tick_size": 5,
 "multiplier": 1,
 "lot_size": 1,
 "decimalprecision": 2,
 "yearly_low_price": 10.50,
 "yearly_high_price": 18.60,
 "exchange": "NSE",
 "token": "11915"
}
}

Note: Broker rate limits apply when using this API. Continuous access may result in the source being blocked.

Last updated