Get Transfer Settings (Withdrawal)

This API allows developers to retrieve the current withdrawal configurations supported for your application. You can use this endpoint to identify supported currency pairs, destination countries, types (Individual/Business), and their respective transaction limits.

Endpoint

GET /api/v2/transfers/withdrawal_settings

Request Headers

HeaderTypeRequiredDescription
x-api-keyStringYesYour unique Harbor API access key.

Request Example

curl --location 'https://harbor-sandbox.owlpay.com/api/v2/transfers/withdrawal_settings' \
--header 'x-api-key: {{YOUR_API_KEY}}'

Response Example

Data Object Attributes

FieldTypeDescription
source_currencyStringThe currency to be withdrawn (e.g., USDC).
destination_countryStringDestination country ISO code (e.g., MX, BR, US, TW).
destination_currencyStringThe local currency received (e.g., MXN, USD, BRL).
source_typeStringOriginator type: individual or business.
destination_typeStringRecipient type: individual or business.
source_amountObjectLimits in source currency (contains min, max).
destination_amountObjectLimits in destination currency (contains min, max).

Response Example (Simplified)

{
    "data": [
        {
            "source_currency": "USDC",
            "destination_country": "US",
            "destination_currency": "USD",
            "source_type": "business",
            "destination_type": "business",
            "source_amount": {
                "currency": "USDC",
                "min": 18,
                "max": 1000000
            },
            "destination_amount": {
                "currency": "USD",
                "min": 10,
                "max": 1000000
            }
        },
        {
            "source_currency": "USDC",
            "destination_country": "MX",
            "destination_currency": "MXN",
            "source_type": "individual",
            "destination_type": "individual",
            "source_amount": {
                "currency": "USDC",
                "min": 18,
                "max": 9998
            },
            "destination_amount": {
                "currency": "MXN",
                "min": 322.68,
                "max": 179233.15
            }
        },
        {
            "source_currency": "USDC",
            "destination_country": "TW",
            "destination_currency": "USD",
            "source_type": "business",
            "destination_type": "individual",
            "source_amount": {
                "currency": "USDC",
                "min": 43,
                "max": 1000000
            },
            "destination_amount": {
                "currency": "USD",
                "min": 35,
                "max": 1000000
            }
        },
        {...},
    ]
}