Available countries and currencies

Waza's B2B global payments API supports a wide range of currencies and countries, making it easy for businesses to conduct cross-border transactions seamlessly. This documentation page provides an overview of the supported currencies and the countries in which our API can be used. Whether you're sending payments to international partners, suppliers, or businesses, our API's reliability and flexibility ensures you can do it efficiently and securely.

Waza's B2B global payments API can be used to facilitate payments in to businesses in over 80 countries globally. We currently process payments in United States Dollar (USD), British Pound Sterling (GBP), Euro (EUR), Ghanaian Cedi (GHS), Nigerian Naira (NGN), and many others. If you have a currency you'd like us to process a payment for you in you can reach out to us at [email protected].

To see an extensive list of the current countries and currencies we support you can make an API call to our Corridors API.

Sample Request

curl --request GET \
     --url https://api.sandbox.waza.co/v2/corridors \
     --header 'waza-x-key: your-api-key' \
const https = require('https')

const options = {
  hostname: 'api.waza.co',
  port: 443,
  path: '/api/countries',
  method: 'GET',
  headers: {
    'x-waza-key': 'YOUR-API-KEY',
  }
}

const req = https.request(options, res => {
  let data = ''

  res.on('data', (chunk) => {
    data += chunk
  });

  res.on('end', () => {
    console.log(JSON.parse(data))
  })
}).on('error', error => {
  console.error(error)
})

req.end()

Sample Response

A successful Corridors API call should return the countries we support as seen below:

[
    {
        "country_code": "AND",
        "country_name": "Andorra",
        "supported_currencies": [
            "USD"
        ]
    },    
    {
        "country_code": "ISL",
        "country_name": "Iceland",
        "supported_currencies": [
            "USD"
        ]
    },
    {
        "country_code": "GHA",
        "country_name": "Ghana",
        "supported_currencies": [
            "USD",
            "GHS",
        ]
    },
    {
        "country_code": "NGA",
        "country_name": "Nigeria",
        "supported_currencies": [
            "NGN",
            "USD"
        ]
    },
]

🚧

Please note that our current supported countries and currencies continues to evolve as we onboard additional banking partners, and discrepancies may exist. If you have specific questions please reach out to us at [email protected].