> ## 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 Merchant Coverages

> Retrieve a list of currency coverages available for your merchant account.

Retrieve a list of currency coverages available for your merchant account. This shows which currencies you can process payments in.

## Overview

This endpoint returns all currency coverages that have been configured for your merchant account. Each coverage indicates a currency that your account is enabled to process.

## Response

<ResponseField name="success" type="boolean">
  Indicates whether the request was successful
</ResponseField>

<ResponseField name="message" type="string">
  Response message
</ResponseField>

<ResponseField name="stan" type="string">
  System trace audit number (unique transaction identifier)
</ResponseField>

<ResponseField name="data" type="array">
  Array of coverage objects, each containing:

  * `id`: Unique coverage identifier
  * `currency_name`: Full name of the currency (e.g., "Botswanan Pula")
  * `is_active`: Whether this coverage is currently active
  * `created_at`: Timestamp when coverage was created
  * `updated_at`: Timestamp when coverage was last updated
</ResponseField>


## OpenAPI

````yaml GET /business/coverages
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:
  /business/coverages:
    get:
      tags:
        - Business
      summary: Get Merchant Coverages
      description: >-
        Retrieve a list of currency coverages available for your merchant
        account.
      operationId: getMerchantCoverages
      responses:
        '200':
          description: Merchant coverages retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CoveragesResponse'
components:
  schemas:
    CoveragesResponse:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        stan:
          type: string
          format: uuid
        data:
          type: array
          items:
            $ref: '#/components/schemas/Coverage'
    Coverage:
      type: object
      properties:
        id:
          type: string
          format: uuid
        currency_name:
          type: string
        is_active:
          type: boolean
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
  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}

````