CoinPaprika & DexPaprika Skills for AI Agents

Ready-to-use skills that give AI agents instant access to crypto market data. Install a skill and your agent immediately knows how to query prices, pools, tokens, exchanges, and more.

Available skills

Skill What it does Data source
coinpaprika-api CEX market data: 12,000+ coins, 350+ exchanges, tickers, OHLCV, historical prices api.coinpaprika.com
dexpaprika-api DEX data: 36 chains, 36M+ pools, 33M+ tokens, real-time streaming api.dexpaprika.com

Installation

npx skills add github.com/coinpaprika/skills/

After installing, just ask your agent to query crypto data. It knows the APIs, CLI tools, endpoints, and response formats automatically.

Updating

Skills do not auto-update. The copy installed into your agent is a snapshot of this repo at install time, and the APIs it documents keep evolving (endpoints get removed and return HTTP 410, response shapes change).

Each SKILL.md carries a version: field in its frontmatter and a freshness check right under the title: a one-line curl that fetches the header of the latest copy from this repo so the agent can compare versions before relying on the skill. If the versions differ, re-run the install command to refresh your local copy:

npx skills add github.com/coinpaprika/skills/

What's inside each skill

{skill-name}/
  SKILL.md              # Main instructions (loaded when skill triggers)
  references/
    openapi.yml         # Full API spec (loaded on demand)
    cli-reference.md    # CLI commands (loaded on demand)
    streaming-api.md    # SSE streaming docs (DexPaprika only)

What agents can do with these skills

CoinPaprika:

  • Get real-time prices for any coin (GET /tickers/btc-bitcoin)
  • Historical OHLCV candlestick data
  • Exchange and market data
  • Search across 12,000+ coins
  • Convert between currencies
  • Look up tokens by contract address
  • CLI: coinpaprika-cli ticker btc-bitcoin

DexPaprika:

  • Get on-chain token prices across 36 blockchains
  • Query liquidity pools, DEXes, and trading activity
  • Historical OHLCV for any pool
  • Batch price queries (up to 10 tokens)
  • SSE price streaming, pushed when a swap moves the price
  • Search tokens, pools, and DEXes across all chains
  • CLI: dexpaprika-cli token ethereum 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2

Free tiers, no key to start

Both APIs have a free tier that works without authentication:

  • DexPaprika: keyless at 30 requests/minute, and a free key raises the monthly quota. Data is delayed up to 15 seconds on the free tier. Pro is $99/month at 300/minute with real-time data. One request costs one credit. Current quotas: https://dexpaprika.com/api/pricing
  • CoinPaprika: 20,000 calls/month keyless. Paid plans start at $99/month for 400,000 calls.

Other integration options

These skills are for Claude Code agents. For other AI tools:

Integration DexPaprika CoinPaprika
MCP Server mcp.dexpaprika.com mcp.coinpaprika.com
CLI dexpaprika-cli coinpaprika-cli
Agent skills agents.dexpaprika.com -
LLM docs docs.dexpaprika.com llms-full.txt

SDKs

DexPaprika: Go | Python | TypeScript | PHP

CoinPaprika: Go | Python | Node.js | PHP | Swift | Kotlin

Links

License

MIT