Wallet Transactions
GetRequiere autenticación
Returns a cursor-paginated list of transactions for one of the authenticated client's wallets, identified by wallet_type. Filter by request_id, transaction_currency, and a date range. Each row carries a channel showing how the money moved and a category computed relative to the caller.
Endpoint
Get
/wallet/v1/transactions/{wallet_type}URL Base: https://api.derivws.com
Códigos de Estado
200OK - Cursor-paginated transactions for the requested wallet type.
400Bad request - errors[0].code will be BadRequest.
401Unauthorized - Missing or invalid Bearer token.
403Forbidden - Valid token but insufficient scope (payment scope required).
404Not found - errors[0].code will be NotFound.
500Internal server error - errors[0].code will be InternalServerError.
503Service unavailable - Request rejected by the gateway circuit breaker.
504Gateway timeout - The service did not respond in time.
Respuestas de Error
400Bad request
{
"errors": [
{
"status": 400,
"code": "BadRequest",
"message": "wallet_type must be one of main, p2p, partner, payment_agent"
}
]
}404Not found
{
"errors": [
{
"status": 404,
"code": "NotFound",
"message": "No wallet of the requested type exists for this client"
}
]
}Requiere autenticación
Este endpoint requiere el encabezado
Deriv-App-ID para identificar su aplicación. Alcance OAuth2: paymentAcerca de Wallet Transactions
El endpoint GET /wallet/v1/transactions/{wallet_type}: Returns a cursor-paginated list of transactions for one of the authenticated client's wallets, identified by wallet_type. Filter by request_id, transaction_currency, and a date range. Each row carries a channel showing how the money moved and a category computed relative to the caller.
¿Alguna otra pregunta? Póngase en contacto