ToolsIntegrations
coingecko
CoinGecko — crypto prices + market charts. Free tier, no key required.
import { coingecko } from '@agentskit/tools'
const runtime = createRuntime({
adapter,
tools: [...coingecko()],
})Sub-tools
| Name | Purpose |
|---|---|
coingeckoPrice | Spot price by coin id + vs_currency |
coingeckoMarketChart | Historical prices / market caps / volumes |
Bundled: coingecko(config).
Config
type CoinGeckoConfig = {
apiKey?: string // Pro tier; optional
fetch?: typeof fetch
}Example
await runtime.run('Compare ETH and SOL price movement over the last 30 days; summarize the divergence.')