Market data
GET /v1/public/get_instruments
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_instruments
GET
/
v1
/
public
/
get_instruments
curl --request GET \
--url https://api.doppapp.com/v1/public/get_instruments
[
{
"instruments": [
{
"base_currency": "<string>",
"block_trade_commission": 123,
"block_trade_min_trade_amount": 123,
"block_trade_tick_size": 123,
"contract_size": 123,
"counter_currency": "<string>",
"creation_timestamp": 123,
"deployed": true,
"expiration_timestamp": 123,
"index_price": "<string>",
"instrument_id": "<string>",
"instrument_name": "<string>",
"instrument_type": "<string>",
"is_active": true,
"kind": "<string>",
"maker_commission": 123,
"min_trade_amount": 123,
"option_type": "<string>",
"quote_currency": "<string>",
"rfq": true,
"settlement_currency": "<string>",
"settlement_period": "<string>",
"strike": 123,
"taker_commission": 123,
"tick_size": 123
}
]
}
]
Response
200 - application/json
Get all instruments
curl --request GET \
--url https://api.doppapp.com/v1/public/get_instruments
[
{
"instruments": [
{
"base_currency": "<string>",
"block_trade_commission": 123,
"block_trade_min_trade_amount": 123,
"block_trade_tick_size": 123,
"contract_size": 123,
"counter_currency": "<string>",
"creation_timestamp": 123,
"deployed": true,
"expiration_timestamp": 123,
"index_price": "<string>",
"instrument_id": "<string>",
"instrument_name": "<string>",
"instrument_type": "<string>",
"is_active": true,
"kind": "<string>",
"maker_commission": 123,
"min_trade_amount": 123,
"option_type": "<string>",
"quote_currency": "<string>",
"rfq": true,
"settlement_currency": "<string>",
"settlement_period": "<string>",
"strike": 123,
"taker_commission": 123,
"tick_size": 123
}
]
}
]