Retrieve a paginated list of all available currencies.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location --request GET 'https://api.edara.io/v/currencies?offset&limit'
Responses
application/json
Successful response containing a list of currency objects.
{
"status_code": 200,
"result": [
{
"id": 1,
"symbol": "EGP",
"description": "Egyptian Pound",
"international_code": "EGP",
"currency_sub_unit": "Piastre",
"is_system_currency": true
},
{
"id": 2,
"symbol": "SAR",
"description": "Saudi Riyal",
"international_code": "SAR",
"currency_sub_unit": "Halala",
"is_system_currency": false
}
],
"total_count": 2
}
Modified at 2025-07-09 20:29:50