Skip to main content
GET
/
business
/
coverages
Get Merchant Coverages
curl --request GET \
  --url https://api.usepooler.com/business/coverages \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "stan": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "currency_name": "<string>",
      "is_active": true,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}
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

success
boolean
Indicates whether the request was successful
message
string
Response message
stan
string
System trace audit number (unique transaction identifier)
data
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

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

Merchant coverages retrieved successfully

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