cURL
curl --request GET \ --url https://api.ledger.so/v1/users/{userId}/withdrawals \ --header 'Api-Key: <api-key>'
{ "data": [ { "id": "<string>", "userId": "<string>", "chainId": 123, "tokenAddress": "<string>", "amount": 123, "status": "pending", "createdAt": 123, "recipientAddress": "<string>", "transactionHash": "<string>" } ], "hasMore": true, "cursor": "<string>" }
List all withdrawals for a user.
API key for authentication. Get your key from the Dashboard.
The user ID
Number of items per page (max 100)
1 <= x <= 100
Pagination cursor from previous response
Withdrawal list
Show child attributes