Get Currency
Retrieves detailed information about a specific currency including its exchange rate and properties.
Endpoint
GET/v2/currency/{iso}
Link
Request
Path Parameters
iso
string
ISO 4217 currency code (3-letter).
Yes
"USD"
Headers
Authorization
Bearer <JWT>
Yes
Accept
application/json
Yes
Response (200 OK)
Returns a currency object with detailed information.
Response Fields
iso
string
ISO 4217 currency code (3-letter).
"USD"
name
string
Full currency name.
"US Dollar"
isCrypto
boolean
true for cryptocurrencies.
false
isDefault
boolean
true for system default currency.
true
rate
number
Exchange rate relative to default currency.
1.0
Example Response:
json
Examples
Request
bash
Crypto Currency Example
Request:
bash
Response:
json
Error Responses
Currency Not Found:
json
Invalid ISO Code:
json
Notes
Rate Basis:
Exchange rates are relative to the default currency (where
isDefault: true).Example: If EUR is default, USD rate
1.07means 1 EUR = 1.07 USD.
Crypto Currencies:
Use standard cryptocurrency ticker symbols (e.g.,
BTC,ETH,USDT).Rates update frequently due to market volatility.
Default Currency:
Only one currency can be marked as default in the system.
Used as base for accounting and reporting.
Real request Example
Real response example
200 OK
Last updated

