Skip to main content
GET
/
v1
/
beneficiaries
/
countries
List Available Countries
curl --request GET \
  --url https://sandbox.api.fin.com/v1/beneficiaries/countries \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 4,
      "code": "AUS",
      "name": "Australia",
      "currency_code": "AUD",
      "phone": {
        "code": "+61",
        "max_length": 9,
        "min_length": 9
      },
      "available_methods": [
        "BANK"
      ],
      "flag": "https://flagcdn.com/au.svg"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Obtain token from Issue a Token endpoint

Response

Countries list retrieved successfully

data
object[]