> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usepooler.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Supported Corridors

> Retrieve a list of supported payment corridors (country and currency combinations) for payouts.

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

<ResponseField name="data" type="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")
</ResponseField>

<Note>
  Supported corridors may change over time. Always check this endpoint to verify current availability before initiating cross-border payments.
</Note>


## OpenAPI

````yaml GET /utils/country-coverage
openapi: 3.0.0
info:
  title: Pooler Developer API
  description: >-
    Comprehensive API documentation for Pooler payment and financial services
    platform
  version: 1.0.0
servers:
  - url: https://api.usepooler.com
    description: Production server
  - url: https://sandbox.usepooler.com
    description: Sandbox server
security:
  - bearerAuth: []
paths:
  /utils/country-coverage:
    get:
      tags:
        - Utilities
      summary: Get Supported Corridors
      description: >-
        Retrieve a list of supported payment corridors (country and currency
        combinations) for payouts.
      operationId: getSupportedCorridors
      responses:
        '200':
          description: Supported corridors retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CountryCoverageResponse'
components:
  schemas:
    CountryCoverageResponse:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        stan:
          type: string
          format: uuid
        data:
          type: array
          items:
            $ref: '#/components/schemas/CountryCoverage'
    CountryCoverage:
      type: object
      properties:
        country_iso_code:
          type: string
        supported_currency:
          type: string
        service_coverage:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Bearer token authentication. Include your API key in the Authorization
        header as: Bearer {your_api_key}

````