Skip to main content
GET
/
v1
/
users
/
{userId}
/
withdrawals
List withdrawals
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>"
}

Authorizations

Api-Key
string
header
required

API key for authentication. Get your key from the Dashboard.

Path Parameters

userId
string
required

The user ID

Query Parameters

limit
integer
default:20

Number of items per page (max 100)

Required range: 1 <= x <= 100
cursor
string

Pagination cursor from previous response

Response

Withdrawal list

data
object[]
required
hasMore
boolean
required
cursor
string | null