Skip to main content
GET
/
api
/
kyb
/
capabilities
/
currencies
Get Supported Currencies
curl --request GET \
  --url https://api.teel.finance/api/kyb/capabilities/currencies
{
  "success": true,
  "currencies": ["EUR", "GBP", "IDR", "MXN", "PHP", "USD"]
}
Returns the flat, sorted list of fiat currency codes supported by the platform.
This endpoint requires authentication (dashboard Auth0 JWT). For an unauthenticated, partner-facing view — including payment rails, onramp/offramp direction, and per-currency amount bounds — use the public coverage endpoint.

Response

success
boolean
true when the request succeeded.
currencies
array
Sorted, de-duplicated array of ISO 4217 currency codes the platform supports.
{
  "success": true,
  "currencies": ["EUR", "GBP", "IDR", "MXN", "PHP", "USD"]
}