Quote

This endpoint can be called using:

https://api.adiinvestments.net/v1/crypto/quote/<symbol>

Returns the following information for the requested cryptocurrency:

  • Circulating Supply

  • Market Cap

  • Max Supply

  • Percent Change

  • Price

  • Symbol

  • Volume/Market Cap

  • Volume

Responses

200 Successful
{
  "circulatingSupply": "19.8M",
  "marketCap": "1.86T",
  "maxSupply": "21.0M",
  "percentChange": "-0.78%",
  "price": 93935.96,
  "symbol": "BTC",
  "volMktcap": "0.02",
  "volume": "27.97B"
}
401 Unauthorized
{"error_code":403,
"error_message":"Invalid API key."}
429 Too Many Requests
{"error_code":429,
"error_message":"Rate limit exceeded. Please try again later."}

Last updated