Market data
GET /v1/public/get_all_order_books
API Documentation
- Trading
- Authentication
- Invite code management
- Account management
- Market data
- GETGET /v1/public/get_all_instruments
- GETGET /v1/public/get_all_order_books
- GETGET /v1/public/get_book_summary_per_currency/{currency}
- GETGET /v1/public/get_book_summary_per_instrument/{instrument_name}
- GETGET /v1/public/get_contract_size/{instrument_name}
- GETGET /v1/public/get_currencies
- GETGET /v1/public/get_expiration_timestamps
- GETGET /v1/public/get_instrument/{instrument_name}
- GETGET /v1/public/get_instruments
- GETGET /v1/public/get_last_trades_by_currency
- GETGET /v1/public/get_last_trades_by_currency_and_time
- GETGET /v1/public/get_last_trades_by_instrument
- GETGET /v1/public/get_last_trades_by_instrument_and_time
- GETGET /v1/public/get_mark_price_history
- GETGET /v1/public/get_order_book/{instrument_name}
- GETGET /v1/public/get_order_book_by_instrument_id/{instrument_id}
- GETGET /v1/public/get_simplified_order_book
- GETGET /v1/public/get_trade_volumes
- GET
- Websocket
Market data
GET /v1/public/get_all_order_books
GET
/
v1
/
public
/
get_all_order_books
curl --request GET \
--url https://api.doppapp.com/v1/public/get_all_order_books
[
{
"order_books": [
{
"ask_iv": 123,
"asks_amounts": [
123
],
"asks_prices": [
123
],
"best_ask_amount": 123,
"best_ask_price": 123,
"best_bid_amount": 123,
"best_bid_price": 123,
"bid_iv": 123,
"bids_amounts": [
123
],
"bids_prices": [
123
],
"change_id": 123,
"delta": 123,
"estimated_delivery_price": 123,
"expiration_date": 123,
"gamma": 123,
"high": 123,
"index_price": 123,
"instrument_id": "<string>",
"instrument_name": "<string>",
"interest_rate": 123,
"last_price": 123,
"low": 123,
"mark_iv": 123,
"mark_price": 123,
"max_price": 123,
"min_price": 123,
"open_interest": 123,
"price_change": 123,
"rho": 123,
"settlement_price": 123,
"side": "<string>",
"state_": "<string>",
"strike_price": 123,
"theta": 123,
"time_last_trade": 123,
"ttm": 123,
"underlying": "<string>",
"underlying_index": "<string>",
"underlying_price": 123,
"vega": 123,
"volume": 123
}
]
}
]
Response
200 - application/json
Retrieves all order books.
curl --request GET \
--url https://api.doppapp.com/v1/public/get_all_order_books
[
{
"order_books": [
{
"ask_iv": 123,
"asks_amounts": [
123
],
"asks_prices": [
123
],
"best_ask_amount": 123,
"best_ask_price": 123,
"best_bid_amount": 123,
"best_bid_price": 123,
"bid_iv": 123,
"bids_amounts": [
123
],
"bids_prices": [
123
],
"change_id": 123,
"delta": 123,
"estimated_delivery_price": 123,
"expiration_date": 123,
"gamma": 123,
"high": 123,
"index_price": 123,
"instrument_id": "<string>",
"instrument_name": "<string>",
"interest_rate": 123,
"last_price": 123,
"low": 123,
"mark_iv": 123,
"mark_price": 123,
"max_price": 123,
"min_price": 123,
"open_interest": 123,
"price_change": 123,
"rho": 123,
"settlement_price": 123,
"side": "<string>",
"state_": "<string>",
"strike_price": 123,
"theta": 123,
"time_last_trade": 123,
"ttm": 123,
"underlying": "<string>",
"underlying_index": "<string>",
"underlying_price": 123,
"vega": 123,
"volume": 123
}
]
}
]