Best Free Currency ConverterName
Kushandura mari pakati pemadhora epasi rose pazvinoitika mitengo, nemari yemutauro wechinyakare. Free.
Maitiro ekushanda
- Insert a value. Type mari yaunoda kushandura.
- Choose currencies. Choose the currency to convert from and one to convert to (ISO codes like USD, EUR).
- Onawo chikonzero. Ona mari yakashandurwa uye chaiyo mutengo wakashandiswa, pamwe nenzvimbo yake.
Nezve iyi chirongwa
Currency Converter inoshandura mari pakati pemari dzepasi rose nekushandisa mari yemari yenguva pfupi. Dzvanya pane mari, sarudza mari yekushandura kubva uye imwe yekushandura, uye iwe unowanawo mhinduro pamwe nemari yacho. Mari dzinotora kubva kune yevanhu mari yemari uye inochengetwa mu cache kwemazuva mashoma; kana mari itsva isiri kuwanikwa, inochengetwa snapshot inochengeta chirongwa ichi ichishanda, uye iyo mhinduro inokuudza kuti ndeipi nzvimbo yacho yakashandisa. Kuti uone, kwete kuti utengese kana kuti uite mari. Hapana chinochengetwa.
Chii vanhu vanoshandisa kuti
- Cheka mutengo wekutengesa kunze kwenyika mumari yako yekunze
- Kushandura mutengo wakanyorwa muEUR, GBP kana JPY
- Kufungidzira chirongwa chekufambisa mumadhora enyika
- Kuenzanisa maviri mutengo anotaurwa muzviuru zvemadhora
Developer API
Automatize iyi chirongwa kubva yako pachako code. Send a POST request to the endpoint below and get the same result the web tool produces. It is rate-limited per IP and needs no signup - API keys for higher limits are coming.
https://best.free/api/tools/currency-converter/
| Parameter | Mufananidzo | Anodarika | Nhoroondo |
|---|---|---|---|
amount |
100 |
Yes | |
from |
USD |
Yes | ISO code. |
to |
EUR |
Yes | ISO code. |
curl -X POST https://best.free/api/tools/currency-converter/ \
-H 'Content-Type: application/json' \
-d '{"amount": 100, "from": "USD", "to": "EUR"}'
import requests
r = requests.post(
"https://best.free/api/tools/currency-converter/",
json={"amount": 100, "from": "USD", "to": "EUR"},
)
print(r.json())
const r = await fetch("https://best.free/api/tools/currency-converter/", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ amount: 100, from: "USD", to: "EUR" }),
});
const data = await r.json();
console.log(data);
Kutenda: JSON with the converted amount and the rate used.
{"ok": true, "value": 92.0, "rate": 0.92, "rate_source": "live"}