1fetch("https://crypto-craze.mimo.dev/api/coins/litecoin", {2 headers: { "api-key": "YOUR_API_KEY" }3})4 .then((res) => res.json())5 .then((json) => console.log(json))6 .catch((error) => console.error(error))
1{2 "id": "litecoin",3 "name": "Litecoin",4 "symbol": "LTC",5 "priceUsd": 88.4,6 "change24h": 1.5,7 "marketCapUsd": 65000000008}