Wallet Transactions
GetAuthentification requise
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.
Point de terminaison
Get
/wallet/v1/transactions/{wallet_type}URL de base : https://api.derivws.com
Codes de statut
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.
Réponses d'erreur
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"
}
]
}Authentification requise
Ce point de terminaison nécessite l'en-tête
Deriv-App-ID pour identifier votre application. Portée OAuth2 : paymentÀ propos de Wallet Transactions
Le point de terminaison 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.
D'autres questions ? Nous contacter