1fetch("https://crypto-craze.mimo.dev/api/coins/solana", {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": "solana",3 "name": "Solana",4 "symbol": "SOL",5 "priceUsd": 142.75,6 "change24h": 4.8,7 "marketCapUsd": 650000000008}