Skip to main content

Countries & payment methods

The Config API endpoint returns the current countries (states) supported by Coinbase Onramp and the payment methods available in each region. Clients can call this API periodically and cache the response so that they know which users to serve Onramp. Today, Coinbase operates in 90+ countries and this gets updated as we grow! See FAQ for an overview. Call the Onramp Config API to get the current list of countries and payment methods supported by Coinbase Onramp.

Response Fields

The Onramp Config API returns a JSON response including the following fields.
NameDescription
countriesA list of supported countries, represented by their ISO 3166-1 two digit country code. Each country contains a list of payment method types available in that country; for the US it also contains a list of supported states.

Example Request/Response

cdpcurl -k /tmp/cdp_api_key.json 'https://api.developer.coinbase.com/onramp/v1/buy/config'

Fiat currencies and crypto assets supported

The Onramp Options API returns the supported fiat currencies and available crypto assets that can be passed into the Onramp Quote API.

Request Parameters

NameReqDescription
countryYISO 3166-1 two-digit country code string representing the purchasing user’s country of residence, e.g., US.
subdivisionNISO 3166-2 two-digit country subdivision code representing the purchasing user’s subdivision of residence within their country, e.g. NY. Required if the country=“US” because certain states (e.g., NY) have state specific asset restrictions.

Response Fields

The Onramp Options API returns a JSON response including the following fields.
NameDescription
payment_currenciesList of supported fiat currencies that can be exchanged for crypto on Onramp in the given location. Each currency contains a list of available payment methods, with min and max transaction limits for that currency.
purchase_currenciesList of available crypto assets that can be bought on Onramp in the given location.

Example Request/Response

cdpcurl -k /tmp/cdp_api_key.json 'https://api.developer.coinbase.com/onramp/v1/buy/options?country=US&subdivision=NY'