v1

latestOpenAPI 3.1.0Apache 2.02026-07-2265186296.2 KB
Supported

Search supported currencies

Searches currencies supported across providers and returns canonical currency metadata including symbol image URLs. Defaults to type=CRYPTO; use type=FIAT to search fiat support. network is only valid for crypto searches. providerCurrencyCode can filter both crypto and fiat provider-specific codes. Provider scope rules:

  • No Basic Auth and no Meld-Account-Id: results come from the global dataset.
  • Basic Auth only: results are restricted to the authenticated identity's providers claim.
  • Meld-Account-Id only: results are restricted to providers configured for that account.
  • Both Basic Auth and Meld-Account-Id: results are restricted to the intersection of both provider sets.
  • Explicit partner filters are intersected with the resolved provider scope.

Explicit partner filtering is intersected with the resolved provider scope. If the effective provider scope contains no providers, this collection endpoint returns 200 with an empty result.

get/network-partner/supported/currencies

Query parameters

category'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'

Categories of functionality offered by a service provider

Provider category

countrystring

Country code

networkstring

Network code. Only valid for crypto searches.

partnerstring

Partner identifier

paymentType'BANK_TRANSFER' | 'CARD' | 'CASH' | 'EXCHANGE' | 'LOCAL' | 'MOBILE_WALLET'

Enumeration of payment method types supported by the platform

Payment method type supported for the route.

providerCurrencyCodestring

Provider-specific currency code. Valid for both crypto and fiat searches.

subdivisionstring

Country subdivision code. Supported for US and CA only.

type'FIAT' | 'CRYPTO'

Identifies whether a currency is fiat or crypto

Currency type. Defaults to CRYPTO.

Headers

Meld-Account-Idstring

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.

Response

Supported currency list

Example response

{
  "currencies": [
    {
      "currencyCode": "USD",
      "name": "US Dollar",
      "decimalPlaces": 2,
      "type": "FIAT",
      "chainCode": "ETH",
      "contract": "0x1234...",
      "symbol": "https://cdn.meld.io/images-currency/crypto/BTC/symbol.png"
    }
  ]
}