API Documentation
Currency ¶
Overview
This endpoint returns a list of supported currencies including their abbreviations and flag URLs.
Get currencies ¶
Get currenciesGET/currencies
Returns a static list of currencies with their ISO code, abbreviation, label, and flag URL.
Response body:
-
currency_code(string) ISO-4217 code -
abbreviation(string) alias for the code -
label(string) display name -
flag_url(string) publicly-accessible image URL -
type(string) alwayscurrency
Example response
{
"code": "OK",
"data": [
{
"currency_code": "AED",
"abbreviation": "AED",
"label": "United Arab Emirates Dirham",
"flag_url": "https://rechat-assets.s3.us-east-1.amazonaws.com/currency-flags/aed.svg",
"type": "currency"
}
],
"info": {}
}
Example URI
GET /currencies
Response
200Body
{
"code": "OK",
"data": [
{
"currency_code": "USD",
"abbreviation": "USD",
"label": "US Dollar",
"flag_url": "https://rechat-public-test.s3.us-test.amazonaws.com/currency-flags/usd.svg",
"type": "currency"
},
{
"currency_code": "EUR",
"abbreviation": "EUR",
"label": "Euro",
"flag_url": "https://rechat-public-test.s3.us-test.amazonaws.com/currency-flags/eur.svg",
"type": "currency"
},
{
"currency_code": "CAD",
"abbreviation": "CAD",
"label": "Canadian Dollar",
"flag_url": "https://rechat-public-test.s3.us-test.amazonaws.com/currency-flags/cad.svg",
"type": "currency"
},
{
"currency_code": "MXN",
"abbreviation": "MXN",
"label": "Mexican Peso",
"flag_url": "https://rechat-public-test.s3.us-test.amazonaws.com/currency-flags/mxn.svg",
"type": "currency"
},
{
"currency_code": "KYD",
"abbreviation": "KYD",
"label": "Cayman Islands Dollar",
"flag_url": "https://rechat-public-test.s3.us-test.amazonaws.com/currency-flags/kyd.svg",
"type": "currency"
},
{
"currency_code": "DOP",
"abbreviation": "DOP",
"label": "Dominican Republic Peso",
"flag_url": "https://rechat-public-test.s3.us-test.amazonaws.com/currency-flags/dop.svg",
"type": "currency"
},
{
"currency_code": "JMD",
"abbreviation": "JMD",
"label": "Jamaican Dollar",
"flag_url": "https://rechat-public-test.s3.us-test.amazonaws.com/currency-flags/jmd.svg",
"type": "currency"
},
{
"currency_code": "BSD",
"abbreviation": "BSD",
"label": "Bahamian Dollar",
"flag_url": "https://rechat-public-test.s3.us-test.amazonaws.com/currency-flags/bsd.svg",
"type": "currency"
},
{
"currency_code": "CRC",
"abbreviation": "CRC",
"label": "Costa Rican Colon",
"flag_url": "https://rechat-public-test.s3.us-test.amazonaws.com/currency-flags/crc.svg",
"type": "currency"
},
{
"currency_code": "NIO",
"abbreviation": "NIO",
"label": "Nicaraguan Cordoba",
"flag_url": "https://rechat-public-test.s3.us-test.amazonaws.com/currency-flags/nio.svg",
"type": "currency"
},
{
"currency_code": "PAB",
"abbreviation": "PAB",
"label": "Panamanian Balboa",
"flag_url": "https://rechat-public-test.s3.us-test.amazonaws.com/currency-flags/pab.svg",
"type": "currency"
},
{
"currency_code": "AED",
"abbreviation": "AED",
"label": "United Arab Emirates Dirham",
"flag_url": "https://rechat-public-test.s3.us-test.amazonaws.com/currency-flags/aed.svg",
"type": "currency"
}
],
"info": {
"count": 12,
"total": 0
}
}