1fetch("https://crypto-craze.mimo.dev/api/coins/cardano", {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": "cardano",3 "name": "Cardano",4 "symbol": "ADA",5 "priceUsd": 0.45,6 "change24h": 0.7,7 "marketCapUsd": 162000000008}