GnistAI GnistAI
Log in

Crypto Prices

Bitcoin, Ethereum, and altcoin prices — market cap, volume, and 24h changes.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 5 tools tools 5 5 Finance

Data source: CoinGecko

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/crypto-prices/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-crypto-prices": {
      "url": "https://context.gnist.ai/mcp/crypto-prices/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/crypto-prices/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "get_crypto_price", "arguments": {"coin_id": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/crypto-prices/

5 endpoints available:

Shell
curl "https://context.gnist.ai/rest/crypto-prices/get_crypto_price?coin_id=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/crypto-prices/get_crypto_price",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "coin_id": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc crypto-prices

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (5)

get_crypto_price
Get the current price and market data for a cryptocurrency.
ParameterTypeRequiredDescription
coin_idstringrequired
get_top_cryptocurrencies
Get the top cryptocurrencies ranked by market capitalization.
ParameterTypeRequiredDescription
limitintegeroptional (default: 10)
get_crypto_simple_price
Get prices for multiple cryptocurrencies in multiple fiat currencies.
ParameterTypeRequiredDescription
coin_idsstringrequired
vs_currenciesstringoptional (default: "usd")
search_crypto
Search for a cryptocurrency by name or symbol.
ParameterTypeRequiredDescription
querystringrequired
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related