Skip to main content
GET
/
bank-details
/
countries
List supported bank-detail countries
const options = {method: 'GET'};

fetch('https://api.dolfinai.co/bank-details/countries', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
[
  {
    "countryCode": "<string>",
    "countryName": "<string>",
    "defaultCurrencies": [
      "<string>"
    ]
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.dolfinai.co/llms.txt

Use this file to discover all available pages before exploring further.

Response

200 - application/json

OK

countryCode
string
required

ISO 3166-1 alpha-2 country code (e.g. GB, US, DE)

countryName
string
required
defaultCurrencies
string[]
required

ISO 4217 currency codes (e.g. GBP, USD, EUR)