Market data
GET /v1/public/get_book_summary_per_currency/{currency}
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_book_summary_per_currency/{currency}
GET
/
v1
/
public
/
get_book_summary_per_currency
/
{currency}
curl --request GET \
--url https://api.doppapp.com/v1/public/get_book_summary_per_currency/{currency}
[
{
"order_books": [
{
"ask_price": 123,
"base_currency": "<string>",
"bid_price": 123,
"estimated_delivery_price": 123,
"high": 123,
"instrument_name": "<string>",
"interest_rate": 123,
"last": 123,
"low": 123,
"mark_price": 123,
"mid_price": 123,
"open_interest": 123,
"price_change": 123,
"quote_currency": "<string>",
"underlying_index": "<string>",
"underlying_price": 123,
"volume": 123
}
]
}
]
Path Parameters
Currency
Response
200 - application/json
Get book summary per currency
curl --request GET \
--url https://api.doppapp.com/v1/public/get_book_summary_per_currency/{currency}
[
{
"order_books": [
{
"ask_price": 123,
"base_currency": "<string>",
"bid_price": 123,
"estimated_delivery_price": 123,
"high": 123,
"instrument_name": "<string>",
"interest_rate": 123,
"last": 123,
"low": 123,
"mark_price": 123,
"mid_price": 123,
"open_interest": 123,
"price_change": 123,
"quote_currency": "<string>",
"underlying_index": "<string>",
"underlying_price": 123,
"volume": 123
}
]
}
]