agentskit.js
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

NamePurpose
coingeckoPriceSpot price by coin id + vs_currency
coingeckoMarketChartHistorical 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.')
✎ Edit this page on GitHub·Found a problem? Open an issue →·How to contribute →

On this page