Ankorstore General API
ℹ️ This section contains general-purpose endpoints that are transversal to the system. These endpoints provide reference data useful across different integration scenarios. ## 💡 Currency Rates The currency rates endpoint returns the latest exchange rates used by the Ankorstore platform. > ⚠️ This endpoint is **public** and does **not** require authentication. ``` [GET] /api/v1/currencies/rates/latest ``` Each rate entry contains: - `fromCurrency` - The source currency code (e.g., `"USD"`) - `toCurrency` - The target currency code (e.g., `"EUR"`) - `rate` - The exchange rate as a decimal number - `date` - The date of the rate This is useful when your integration needs to display prices in multiple currencies or reconcile amounts across different currency zones.