Skip to main content
GET
/
api
/
withdrawals
List withdrawal history
curl --request GET \
  --url https://mag3nt.com/api/withdrawals \
  --header 'Authorization: <api-key>'
{
  "withdrawals": [
    {
      "id": "wd_a1b2c3d4-...",
      "wallet_address": "<string>",
      "asset": "USDC",
      "network": "eip155:8453",
      "amount": 123,
      "fee_amount": 123,
      "to_address": "<string>",
      "tx_hash": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key prefixed with 'Bearer sx_live_...'

Query Parameters

id
string

Look up a single withdrawal by ID

status
enum<string>

Filter by status

Available options:
PROCESSING,
COMPLETED,
FAILED

Response

200 - application/json

Withdrawals list

withdrawals
object[]