Get current quote
-X GET
--header 'Accept: application/json'
--header 'Authorization: Bearer {token here}'
'https://api.lime.co/marketdata/quote?symbol=AAPL'
Returns the following structure:
{
"symbol": "TSLA 240920C00035000",
"ask": 1.82,
"ask_size": 38,
"bid": 1.79,
"bid_size": 1710,
"last": 1.79,
"last_size": 30,
"volume": 125,
"date": 1682524358,
"high": 1.88,
"low": 1.74,
"open": 1.88,
"close": 1.81,
"week52_high": 0,
"week52_low": 0,
"change": -0.02,
"change_pc": -1.1,
"open_interest": 37168,
"implied_volatility": 38.73,
"theoretical_price": 1.7102,
"delta": 0.6001,
"gamma": 0.1030,
"theta": -0.0236,
"vega": 0.0423,
"rho": 0.0638
}
The query retrieves current quote for the specified symbol.
If you have an active OPRA data subscription, it is necessary to activate your API token in the Cabinet under My Profile
-> API Keys
to access market data. OPRA market data will be available for one trading session. On the following day, it will be required to reactivate the API token.
Request
parameter | description |
---|---|
symbol | Required. The security symbol |
Response
The data depends on current time of day.
name | type | description |
---|---|---|
symbol | string | The security symbol |
ask | number | Ask price |
ask_size | number | Ask size |
bid | number | Bid price |
bid_size | number | Bid size |
last | number | Last price |
last_size | number | Last trade size |
volume | number | Today's total volume |
date | number | Last trade time. Timestamp in unix format |
high | number | Today's high price |
low | number | Today's low price |
open | number | Open price |
close | number | Yesterday's close price |
week52_high | number | 52 week high |
week52_low | number | 52 week low |
change | number | Today's price change |
change_pc | number | Today's percent price change |
open_interest | number | Open Interest (options) |
implied_volatility | number | Implied volatility (options) |
theoretical_price | number | Theoretical price (options) |
delta | number | Delta value (options) |
gamma | number | Gamma value (options) |
theta | number | Theta value (options) |
vega | number | Vega value (options) |
rho | number | Rho value (options) |