Retrieve details of a specific currency using its unique identifier.
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/'
Responses
application/json
Successful response with the currency details.
{
"status_code": 200,
"result": {
"id": 1,
"symbol": "ج.م",
"description": "Egyptian Pound",
"international_code": "EGP",
"currency_sub_unit": "Piastre",
"is_system_currency": true
}
}
Modified at 2025-07-09 20:29:50