Skip to main content
GET
/
network-partner
/
supported
/
routes
/
{category}
/
{countryCode}
/
{sourceCurrencyCode}
/
{destinationCurrencyCode}
List supported routes
curl --request GET \
  --url https://api.meld.io/network-partner/supported/routes/{category}/{countryCode}/{sourceCurrencyCode}/{destinationCurrencyCode}
[
  {
    "partner": "BANXA",
    "source": "USD",
    "destination": "BTC",
    "paymentMethods": [
      {
        "paymentType": "CARD",
        "name": "CREDIT_DEBIT_CARD",
        "partnerMethodName": "card",
        "limits": {
          "currencyCode": "USD",
          "min": 10,
          "max": 10000
        },
        "logo": {
          "dark": "https://cdn.meld.io/images-paymentmethod/CREDIT_DEBIT_CARD/logo_dark.png",
          "light": "https://cdn.meld.io/images-paymentmethod/CREDIT_DEBIT_CARD/logo_light.png"
        }
      }
    ],
    "kycLimits": [
      {
        "provider": "BANXA",
        "category": "CRYPTO_ONRAMP",
        "countryCode": "US",
        "limitType": "DAILY",
        "currencyCode": "USD",
        "level1": 1000,
        "level2": 10000,
        "level3": 50000
      }
    ]
  }
]

Headers

Meld-Account-Id
string

Optional. Base58 encoded account id. Restricts results to providers configured for the account. If Basic Auth is also present, the effective scope is the intersection of authenticated providers and account providers.

Path Parameters

category
enum<string>
required

Provider category Categories of functionality offered by a service provider

Available options:
CRYPTO_ONRAMP,
CRYPTO_OFFRAMP,
CRYPTO_TRANSFER,
BANK_LINKING,
FIAT_PAYMENTS,
CRYPTO_VIRTUAL_ACCOUNT_ONRAMP,
CRYPTO_VIRTUAL_ACCOUNT_OFFRAMP,
CUSTOMER_KYC,
CRYPTO_ONRAMP_SWAP,
CRYPTO_OFFRAMP_SWAP
countryCode
string
required

Country code

destinationCurrencyCode
string
required

Destination currency code

sourceCurrencyCode
string
required

Source currency code

Query Parameters

partners
string

Comma-separated partner ids

paymentMethod
string

Canonical payment method code

paymentType
enum<string>

Payment method type Enumeration of payment method types supported by the platform

Available options:
BANK_TRANSFER,
CARD,
CASH,
EXCHANGE,
LOCAL,
MOBILE_WALLET
subdivision
string

Country subdivision code. Supported for US and CA only. Use either full ISO 3166-2 code or local code.

Response

200 - application/json

Supported routes

partner
string

Partner identifier

Example:

"BANXA"

source
string

Source currency code

Example:

"USD"

destination
string

Destination currency code

Example:

"BTC"

paymentMethods
object[]

Payment methods for the route. Empty for swap routes without payment methods.

kycLimits
object[]

Provider KYC limits for this route. Empty when limits are not available.