GET
/api/v2/transfers/withdrawals/validateValidate withdrawal request
Authentication
Send your API key in the x-api-key header on every request.
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| userId (query) | unknown | No | User ID |
| currency (query) | string | No | Currency (USDT or USDC) |
| amount (query) | unknown | No | Amount to withdraw |
Responses
200 — OK
| Field | Type | Required | Description |
|---|---|---|---|
| IsValid | boolean | No | |
| UserId | unknown | No | |
| RequestedAmount | unknown | No | |
| RequestedCurrency | string | No | |
| ErrorCode | string | No | |
| ErrorMessage | string | No | |
| UserFriendlyMessage | string | No | |
| AvailableAmount | unknown | No | |
| ShortfallAmount | unknown | No | |
| BalanceBreakdown | object | No | |
| AvailableBalance | object | No | |
| OptimalTransferPath | string | No | |
| RequiresInternalTransfer | boolean | No |
400 — Bad Request
| Field | Type | Required | Description |
|---|---|---|---|
| Message | string | No | |
| Code | string | No | |
| Status | unknown | No | |
| ValidationErrors | object | No | |
| Details | string | No |
500 — Internal Server Error
| Field | Type | Required | Description |
|---|---|---|---|
| Message | string | No | |
| Code | string | No | |
| Status | unknown | No | |
| ValidationErrors | object | No | |
| Details | string | No |
Example request
curl -X GET "https://{base_url}/api/v2/transfers/withdrawals/validate" \
-H "x-api-key: YOUR_API_KEY"This page is generated from the live OpenAPI specification and always matches the current API.