steamId.
Authentication: Merchant API Key (api-key header)
Scope: CORE_ACCESS
Request
Response
nextBefore is the cursor for the next page, null on the last page.
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
List the end user’s crypto cashouts, newest first, with their status, fee and transaction hash.
steamId.
Authentication: Merchant API Key (api-key header)
Scope: CORE_ACCESS
GET https://api.assetpay.gg/secure/crypto/withdrawals?steamId=76561198012345678&limit=20
api-key: ap_...
| Parameter | Type | Required | Description |
|---|---|---|---|
steamId | string | Yes | SteamID64 of the end user |
limit | number | No | Page size, 1-100 |
before | string | No | ISO 8601 timestamp. Pass the previous page’s nextBefore to get the next page |
{
"requestId": "...",
"success": true,
"data": {
"withdrawals": [
{
"id": "b0f3c1e2-...",
"type": "crypto_withdraw",
"status": "completed",
"steamId": "76561198012345678",
"chain": "ETH",
"token": "USDC",
"amount": "50.00",
"amountCents": 5000,
"feeCents": 100,
"receiveCents": 4900,
"cryptoAmount": "49",
"address": "0x9c1f0e2d3b4a59687766554433221100ffeeddcc",
"txHash": "0x44hq...",
"reason": null,
"createdAt": "2026-09-20T10:00:00.000Z",
"updatedAt": "2026-09-20T10:02:00.000Z",
"completedAt": "2026-09-20T10:02:00.000Z"
}
],
"nextBefore": null
}
}
nextBefore is the cursor for the next page, null on the last page.
| Merchant Status | Limit |
|---|---|
| Verified | 1000 requests / min |
| Unverified | 10 requests / min |