Skip to main content
GET
/
v1
/
cpn
/
configurations
/
overview
Get payment configurations
curl --request GET \
  --url https://api.circle.com/v1/cpn/configurations/overview \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "destinationCountries": [
      "MX"
    ],
    "destinationCurrencies": [
      "MXN"
    ],
    "paymentMethodTypes": [
      "SPEI"
    ],
    "sourceCurrencies": [
      "USDC"
    ],
    "blockchains": [
      "ETH-SEPOLIA"
    ]
  }
}

Authorizations

Authorization
string
header
required

Circle's API Keys are formatted in the following structure "PREFIX:ID:SECRET". All three parts are requred to make a successful request.

Response

payment configurations retrieved successfully.

data
object
required

Overview of available payment configurations including supported blockchains, countries, currencies, and payment methods.

I