Get latest prices for passed parameters
Result data
const response = await fetch('https://market-data.nownodes.io/api/v1/price?from=text&to=text', { method: 'GET', headers: {}, }); const data = await response.json();
{ "code": "text", "result": [ { "quotes": { "rate": 0, "to_currency": "text" }, "from_currency": "text" } ], "error": "text" }