Trading
GET /v1/public/get_user_trades_by_order
API Documentation
- Trading
- POSTPOST /v1/private/buy
- POSTPOST /v1/private/cancel
- POSTPOST /v1/private/cancel_all
- POSTPOST /v1/private/cancel_all_by_currency
- POSTPOST /v1/private/cancel_all_by_instrument
- POSTPOST /v1/private/deposit_collateral
- POSTPOST /v1/private/sell
- GETGET /v1/public/get_open_orders_by_currency
- GETGET /v1/public/get_open_orders_by_instrument
- GETGET /v1/public/get_open_orders_by_side
- GETGET /v1/public/get_open_orders_instrument_by_currency
- GETGET /v1/public/get_user_trades_by_currency
- GETGET /v1/public/get_user_trades_by_currency_and_time
- GETGET /v1/public/get_user_trades_by_instrument
- GETGET /v1/public/get_user_trades_by_instrument_and_time
- GETGET /v1/public/get_user_trades_by_order
- POST
- Authentication
- Invite code management
- Account management
- Market data
- Websocket
Trading
GET /v1/public/get_user_trades_by_order
GET
/
v1
/
public
/
get_user_trades_by_order
curl --request GET \
--url https://api.doppapp.com/v1/public/get_user_trades_by_order
[
{
"last_trades": [
{
"amount": 123,
"base_currency": "<string>",
"direction": "<string>",
"fee": 123,
"fee_currency": "<string>",
"index_price": 123,
"instrument_name": "<string>",
"iv": 123,
"liquidity": "<string>",
"mark_price": 123,
"order_id": 123,
"order_type": "<string>",
"price": 123,
"tick_direction": 123,
"timestamp": 123,
"trade_direction": "<string>",
"trade_id": "<string>",
"trade_seq": 123,
"wallet_address": "<string>"
}
]
}
]
Query Parameters
Response
200 - application/json
Retrieve the list of user trades that was created for given order
curl --request GET \
--url https://api.doppapp.com/v1/public/get_user_trades_by_order
[
{
"last_trades": [
{
"amount": 123,
"base_currency": "<string>",
"direction": "<string>",
"fee": 123,
"fee_currency": "<string>",
"index_price": 123,
"instrument_name": "<string>",
"iv": 123,
"liquidity": "<string>",
"mark_price": 123,
"order_id": 123,
"order_type": "<string>",
"price": 123,
"tick_direction": 123,
"timestamp": 123,
"trade_direction": "<string>",
"trade_id": "<string>",
"trade_seq": 123,
"wallet_address": "<string>"
}
]
}
]