Market data
GET /v1/public/get_simplified_order_book
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_simplified_order_book
GET
/
v1
/
public
/
get_simplified_order_book
curl --request GET \
--url https://api.doppapp.com/v1/public/get_simplified_order_book
[
{
"order_books": [
{
"ask_iv": 123,
"ask_price": 123,
"base_currency": "<string>",
"bid_iv": 123,
"bid_price": 123,
"delta": 123,
"expiration_date": 123,
"instrument_id": "<string>",
"instrument_name": "<string>",
"mark_price": 123,
"side": "<string>",
"strike_price": 123
}
]
}
]
Response
200 - application/json
Retrieves all order books.
curl --request GET \
--url https://api.doppapp.com/v1/public/get_simplified_order_book
[
{
"order_books": [
{
"ask_iv": 123,
"ask_price": 123,
"base_currency": "<string>",
"bid_iv": 123,
"bid_price": 123,
"delta": 123,
"expiration_date": 123,
"instrument_id": "<string>",
"instrument_name": "<string>",
"mark_price": 123,
"side": "<string>",
"strike_price": 123
}
]
}
]