Documentation menu

Endpoint: coins

GEThttps://crypto-craze.mimo.dev/api/coins/ethereum

Request

GETcoins
1fetch("https://crypto-craze.mimo.dev/api/coins/ethereum", {
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))

Response

response.json
1{
2 "id": "ethereum",
3 "name": "Ethereum",
4 "symbol": "ETH",
5 "priceUsd": 3150.2,
6 "change24h": -1.1,
7 "marketCapUsd": 378000000000
8}