Response
Array of supported countries with their regions and default currencies
Show countries
Show countries
The ISO 3166 2-digit country code
The display name for the Country
The URL to the Country’s flag image
The currency code for the default currency of this country
Array of available service providers
Show serviceProviders
Show serviceProviders
Service provider identifier
Display name of the service provider
Current status of the provider
Array of service categories
Status of each category
Provider’s website URL
Provider’s customer support URL
Copy
curl -X GET "https://onramp.staging-portal.abs.xyz/config"
Copy
{
"countries": [
{
"countryCode": "CA",
"name": "Canada",
"flagImageUrl": "https://images-country.meld.io/CA/flag.svg",
"regions": [
{
"regionCode": "CA-AB",
"name": "Alberta"
},
{
"regionCode": "CA-BC",
"name": "British Columbia"
}
],
"defaultFiatCurrency": "CAD"
},
{
"countryCode": "US",
"name": "United States",
"flagImageUrl": "https://images-country.meld.io/US/flag.svg",
"regions": [
{
"regionCode": "US-CA",
"name": "California"
},
{
"regionCode": "US-NY",
"name": "New York"
}
],
"defaultFiatCurrency": "USD"
}
],
"limits": [
{
"currencyCode": "CAD",
"defaultAmount": 400,
"minimumAmount": 15.64,
"maximumAmount": 23303.6
},
{
"currencyCode": "USD",
"defaultAmount": 300,
"minimumAmount": 9.18,
"maximumAmount": 17094.78
}
],
"serviceProviders": [
{
"serviceProvider": "TRANSAK",
"name": "Transak",
"status": "LIVE",
"categories": ["CRYPTO_ONRAMP"],
"categoryStatuses": {
"CRYPTO_ONRAMP": "LIVE"
},
"websiteUrl": "https://transak.com",
"customerSupportUrl": "",
"logos": {
"dark": "https://images-serviceprovider.meld.io/TRANSAK/logo_dark.png",
"light": "https://images-serviceprovider.meld.io/TRANSAK/logo_light.png",
"darkShort": "https://images-serviceprovider.meld.io/TRANSAK/short_logo_dark.png",
"lightShort": "https://images-serviceprovider.meld.io/TRANSAK/short_logo_light.png"
}
}
]
}