Skip to main content
GET
/
v1
/
withdrawals
/
{withdrawalId}
Get withdrawal
curl --request GET \
  --url https://api.ledger.so/v1/withdrawals/{withdrawalId} \
  --header 'Api-Key: <api-key>'
{
  "id": "<string>",
  "userId": "<string>",
  "chainId": 123,
  "tokenAddress": "<string>",
  "amount": 123,
  "status": "pending",
  "createdAt": 123,
  "recipientAddress": "<string>",
  "transactionHash": "<string>"
}

Authorizations

Api-Key
string
header
required

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

Path Parameters

withdrawalId
string
required

The withdrawal ID

Response

Withdrawal details

id
string
required
userId
string
required
chainId
integer
required
tokenAddress
string
required

Token contract address

amount
integer
required

Amount in token minor units (e.g., for USDC with 6 decimals, 1000000 = 1 USDC)

status
enum<string>
required
Available options:
pending,
submitted,
confirmed,
failed
createdAt
integer
required

Unix timestamp in milliseconds

recipientAddress
string

Destination wallet address

transactionHash
string