v1

latestOpenAPI 3.0.32026-07-26184851.6 MB
Withdraw Fiat V2

Get Payment Methods

Returns the payment methods available for the selected withdrawal corridor.

get/v2/wallets/{id}/withdraw/fiat/payment-methods

Path parameters

idstring uuid required

Wallet identifier.

Query parameters

assetIdstring uuid required

Stablecoin asset identifier returned by the supported-assets endpoint.

currencystring required

ISO 4217 fiat currency code.

amountstring required

Decimal amount encoded as a string to preserve precision.

countrystring

ISO 3166-1 alpha-2 country code.

paymentMethodCategorystring

Optional high-level payment-method category.

providerstring

Optional provider slug. Omit it to let Blockradar select an eligible provider.

Response

Successful response.

statusCodeinteger required
messagestring required

Human-readable result.

Example response

{
  "statusCode": 200,
  "message": "Payment methods fetched successfully",
  "data": [
    {
      "id": "bank_transfer",
      "supportsPaymentMethodResolution": true,
      "type": "bank_transfer",
      "country": "NG",
      "fiatCurrency": "NGN",
      "paymentMethodCategory": "bank",
      "paymentMethodType": "bank_transfer",
      "processingSeconds": 60,
      "fee": "1500.00",
      "providers": [
        {
          "id": "example-provider",
          "name": "Example Provider",
          "type": "bank_transfer"
        }
      ]
    }
  ]
}