Data source: CoinGecko
https://context.gnist.ai/rest/crypto-prices/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (5)
get_crypto_priceGet the current price and market data for a cryptocurrency.
Returns price in USD, market cap, 24h change, and trading volume.
Args:
coin_id: CoinGecko coin ID (e.g. "bitcoin", "ethereum", "solana").
Use search_crypto to find the correct ID.
| Parameter | Type | Required | Description |
|---|---|---|---|
coin_id | string | required |
{
"coin_id": "example"
}get_top_cryptocurrenciesGet the top cryptocurrencies ranked by market capitalization.
Returns price, market cap, 24h change, and volume for each coin.
Args:
limit: Number of coins to return (1-100, default 10).
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | optional | (default: 10) |
{
"query": "example"
}get_crypto_simple_priceGet prices for multiple cryptocurrencies in multiple fiat currencies.
Lightweight endpoint for quick price lookups.
Args:
coin_ids: Comma-separated CoinGecko IDs (e.g. "bitcoin,ethereum,solana").
vs_currencies: Comma-separated currency codes (e.g. "usd,eur,nok"). Default: "usd".
| Parameter | Type | Required | Description |
|---|---|---|---|
coin_ids | string | required | |
vs_currencies | string | optional | (default: "usd") |
{
"coin_ids": "example"
}search_cryptoSearch for a cryptocurrency by name or symbol.
Returns matching coins with their CoinGecko IDs for use with other tools.
Args:
query: Search term (e.g. "bitcoin", "ETH", "solana").
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required |
{
"query": "example"
}report_feedbackReport a bug, feature request, or general feedback for this data source.
Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.
Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"feedback": "example"
}Quick Start
curl -X POST "https://context.gnist.ai/rest/crypto-prices/get_crypto_price" \
-H "Content-Type: application/json" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"coin_id": "example"}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/rest/crypto-prices/get_crypto_price",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
json={
"coin_id": "example"
},
)
print(resp.json())