Skip to main content
GET
/
api
/
config
/
coverage
Get Coverage Matrix
curl --request GET \
  --url https://api.teel.finance/api/config/coverage
{
  "fiat": [
    {
      "code": "PHP",
      "name": "Philippine Peso",
      "decimals": 2,
      "onramp": true,
      "offramp": true,
      "minAmount": 620,
      "maxAmount": 500000,
      "rails": [
        { "code": "instapay", "label": "InstaPay" },
        { "code": "pesonet", "label": "PESONet" }
      ]
    },
    {
      "code": "USD",
      "name": "US Dollar",
      "decimals": 2,
      "onramp": true,
      "offramp": true,
      "rails": [
        { "code": "ach", "label": "ACH" },
        { "code": "wire", "label": "Wire" }
      ]
    }
  ],
  "wallet": {
    "tokens": ["USDC", "USDT"],
    "chains": [
      { "code": "arbitrum", "label": "Arbitrum" },
      { "code": "base", "label": "Base" },
      { "code": "polygon", "label": "Polygon" }
    ]
  }
}
Returns the full currency & rails coverage matrix for the platform: which fiat currencies are supported, the payment rails available for each, whether each can be used for onramp (pay-in) and/or offramp (pay-out), and the per-currency amount bounds. It also lists the supported stablecoin tokens and the chains they settle on. This endpoint is derived entirely from live platform configuration — as corridors, currencies, rails, or providers change, the response updates automatically. Provider identities are never exposed.
This endpoint requires no authentication and can be called publicly. Coverage here is the platform-wide matrix; the corridors available to a specific business still depend on its KYB onboarding status.

Response

fiat
array
Supported fiat currencies.
wallet
object
Stablecoin (wallet) coverage.
{
  "fiat": [
    {
      "code": "PHP",
      "name": "Philippine Peso",
      "decimals": 2,
      "onramp": true,
      "offramp": true,
      "minAmount": 620,
      "maxAmount": 500000,
      "rails": [
        { "code": "instapay", "label": "InstaPay" },
        { "code": "pesonet", "label": "PESONet" }
      ]
    },
    {
      "code": "USD",
      "name": "US Dollar",
      "decimals": 2,
      "onramp": true,
      "offramp": true,
      "rails": [
        { "code": "ach", "label": "ACH" },
        { "code": "wire", "label": "Wire" }
      ]
    }
  ],
  "wallet": {
    "tokens": ["USDC", "USDT"],
    "chains": [
      { "code": "arbitrum", "label": "Arbitrum" },
      { "code": "base", "label": "Base" },
      { "code": "polygon", "label": "Polygon" }
    ]
  }
}