Skip to main content
GET
/
v1
/
payment-methods
Get payment methods
curl --request GET \
  --url https://api.cadanapay.com/v1/payment-methods \
  --header 'Authorization: Bearer <token>'
{
  "country": "BR",
  "paymentMethods": [
    {
      "type": "bank",
      "currency": "BRL",
      "status": "active"
    },
    {
      "type": "proxy",
      "currency": "BRL",
      "status": "active"
    },
    {
      "type": "swift",
      "currency": "USD",
      "status": "active"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

countryCode
string

The country code in ISO 3166-1 alpha-2 format

paymentMethod
string

The payment method to filter by

currency
string

The currency to filter by

Response

Available payment methods for the requested country

country
string
required

The country code in ISO 3166-1 alpha-2 format

Example:

"BR"

paymentMethods
object[]
required