1fetch("https://crypto-craze.mimo.dev/api/coins/dogecoin", {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": "dogecoin",3 "name": "Dogecoin",4 "symbol": "DOGE",5 "priceUsd": 0.158,6 "change24h": 5.2,7 "marketCapUsd": 228000000008}