This is a simple currency converter that converts from one currency to another
GET/api/to-usd- converts from UZS (so'm) currency to USDGET/api/to-uzs- converts from USD to UZS (so'm) currency
GET/api/to-usd?amount=1000- converts 1000 UZS to USD
GET /api/to-usd?amount=1000parameters:
amount(number) - amount of currency to convert
{
"amount": 1000,
"currency": "UZS",
"converted": 0.11,
"convertedCurrency": "USD"
}GET/api/to-uzs?amount=1000- converts 1000 USD to UZS (so'm)
GET /api/to-uzs?amount=1000parameters:
amount(number) - amount of currency to convert
{
"amount": 1000,
"currency": "USD",
"converted": 89200,
"convertedCurrency": "UZS"
}