Skip to main content
GET
/
utils
/
country-coverage
Get Supported Corridors
curl --request GET \
  --url https://api.usepooler.com/utils/country-coverage \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "stan": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "data": [
    {
      "country_iso_code": "<string>",
      "supported_currency": "<string>",
      "service_coverage": "<string>"
    }
  ]
}
Retrieve a list of supported payment corridors (country and currency combinations) for payouts. This shows which countries and currencies you can send payments to.

Overview

This endpoint returns all supported payment corridors, indicating which countries and currencies are available for payout services. Each corridor specifies the country, supported currency, and service coverage type.

Response

data
array
Array of country coverage objects, each containing:
  • country_iso_code: ISO country code (e.g., “GH”, “KE”, “NG”)
  • supported_currency: Currency code supported for that country (e.g., “GHS”, “KES”, “NGN”)
  • service_coverage: Type of service coverage (e.g., “payouts”)
Supported corridors may change over time. Always check this endpoint to verify current availability before initiating cross-border payments.

Authorizations

Authorization
string
header
required

Bearer token authentication. Include your API key in the Authorization header as: Bearer {your_api_key}

Response

200 - application/json

Supported corridors retrieved successfully

success
boolean
message
string
stan
string<uuid>
data
object[]