Skip to main content
GET
/
resources
/
countries-currencies
Get the countries and currencies
curl --request GET \
  --url https://api.mycreditapp.ai/v1-beta/resources/countries-currencies \
  --header 'Authorization: Bearer <token>'
[
  {
    "country_code": "<string>",
    "currency_code": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication using a JWT token. Provide a valid access token. Authorization header format: Authorization: Bearer <token>.

Query Parameters

country_code
string | null
Required string length: 2

Response

Successful Response

country_code
string
required

Two-letter ISO 3166-1 alpha-2 code of the country

Required string length: 2
Examples:

"AF"

"AL"

currency_code
string
required

Three-letter ISO 4217 code of the currency used in the country

Required string length: 3
Examples:

"AFN"

"ALL"