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>"
]
}
]Returns the list of countries for which structured bank-detail profiles are available.
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.