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"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.cadanapay.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Headers

X-MultiTenantKey
string

Required when using a Platform API token. The tenant key identifying which business to operate on.

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