Get fiat institutions by country

Retrieve the fiat account institution details for the given country code, where applicable

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Look up supported banks and mobile money providers for a specific country. Use this to get the institutionCode required when creating fiat payout transactions.

Example Request

curl "https://api.neutron.me/api/v2/reference/fiat-institution/by-country/VN" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Example Response

{
  "banks": [
    {
      "institutionCode": "970422",
      "institutionType": "bank",
      "institutionName": "Military Commercial Joint Stock Bank (MB Bank)"
    },
    {
      "institutionCode": "970436",
      "institutionType": "bank",
      "institutionName": "Vietcombank"
    },
    {
      "institutionCode": "970418",
      "institutionType": "bank",
      "institutionName": "BIDV"
    }
  ],
  "mobiles": [
    {
      "institutionCode": "MOMO",
      "institutionType": "mobile",
      "institutionName": "MoMo E-Wallet"
    }
  ]
}

Response Fields

FieldTypeDescription
banksarrayList of bank institutions
banks[].institutionCodestringCode to use in destReq.reqDetails.institutionCode
banks[].institutionTypestringAlways "bank"
banks[].institutionNamestringHuman-readable bank name
mobilesarrayList of mobile money providers
mobiles[].institutionCodestringCode to use in transaction
mobiles[].institutionTypestringAlways "mobile"
mobiles[].institutionNamestringProvider name

Using in a Fiat Payout

The institutionCode from this endpoint goes into your Create Transaction request:

{
  "destReq": {
    "ccy": "VND",
    "method": "vnd-instant",
    "reqDetails": {
      "bankAcctNum": "0123456789",
      "institutionCode": "970422"
    }
  }
}

Availability

⚠️

Not all countries are supported. If a country has no fiat payout rails, this endpoint returns an empty response. Contact Neutron support for the latest list of supported countries.

Related

Path Params
string
required

ISO alpha-2 country code (e.g., VN)

Response

Language
Credentials
Bearer
JWT
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json