crypto-cex
Get centralized exchange market data, order books, trading pairs, ticker prices, and 24h volume across Binance, Coinbase, Kraken, Bybit, Gate.io, and Bitget. Use when asked about CEX prices, exchange order book, trading pairs, CEX volume, Binance price, Kraken ticker, exchange comparison, or funding rates on centralized exchanges.
Best use case
crypto-cex is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Get centralized exchange market data, order books, trading pairs, ticker prices, and 24h volume across Binance, Coinbase, Kraken, Bybit, Gate.io, and Bitget. Use when asked about CEX prices, exchange order book, trading pairs, CEX volume, Binance price, Kraken ticker, exchange comparison, or funding rates on centralized exchanges.
Teams using crypto-cex should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/crypto-cex/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How crypto-cex Compares
| Feature / Agent | crypto-cex | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Get centralized exchange market data, order books, trading pairs, ticker prices, and 24h volume across Binance, Coinbase, Kraken, Bybit, Gate.io, and Bitget. Use when asked about CEX prices, exchange order book, trading pairs, CEX volume, Binance price, Kraken ticker, exchange comparison, or funding rates on centralized exchanges.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Crypto CEX Centralized exchange public market data across 6 major exchanges. All endpoints below are public (no auth required) and return JSON. ## Symbol Format by Exchange | Exchange | Format | Example (BTC/USDT) | |----------|--------|-------------------| | Binance | `BTCUSDT` | No separator | | Coinbase | `BTC-USDT` | Hyphen | | Kraken | `XBTUSDT` | XBT for BTC | | Bybit | `BTCUSDT` | No separator | | Gate.io | `BTC_USDT` | Underscore | | Bitget | `BTCUSDT` | No separator | ## APIs ### Binance (Free, no auth) Base: `https://api.binance.com` **Ticker price**: ``` web_fetch url="https://api.binance.com/api/v3/ticker/price?symbol=BTCUSDT" ``` **24h ticker stats**: ``` web_fetch url="https://api.binance.com/api/v3/ticker/24hr?symbol=BTCUSDT" ``` **Order book** (depth): ``` web_fetch url="https://api.binance.com/api/v3/depth?symbol=BTCUSDT&limit=10" ``` **Klines (candlesticks)**: ``` web_fetch url="https://api.binance.com/api/v3/klines?symbol=BTCUSDT&interval=1d&limit=30" ``` **All trading pairs**: ``` web_fetch url="https://api.binance.com/api/v3/exchangeInfo" ``` **Futures funding rate**: ``` web_fetch url="https://fapi.binance.com/fapi/v1/fundingRate?symbol=BTCUSDT&limit=1" ``` ### Coinbase (Free, no auth) Base: `https://api.exchange.coinbase.com` **Ticker**: ``` web_fetch url="https://api.exchange.coinbase.com/products/BTC-USDT/ticker" ``` **24h stats**: ``` web_fetch url="https://api.exchange.coinbase.com/products/BTC-USDT/stats" ``` **Order book**: ``` web_fetch url="https://api.exchange.coinbase.com/products/BTC-USDT/book?level=1" ``` **All products**: ``` web_fetch url="https://api.exchange.coinbase.com/products" ``` ### Kraken (Free, no auth) Base: `https://api.kraken.com/0/public` **Ticker**: ``` web_fetch url="https://api.kraken.com/0/public/Ticker?pair=XBTUSDT" ``` **OHLC**: ``` web_fetch url="https://api.kraken.com/0/public/OHLC?pair=XBTUSDT&interval=1440" ``` **Order book**: ``` web_fetch url="https://api.kraken.com/0/public/Depth?pair=XBTUSDT&count=10" ``` **Asset pairs**: ``` web_fetch url="https://api.kraken.com/0/public/AssetPairs" ``` > Note: Kraken uses `XBT` instead of `BTC`, `XXBT` in some responses. ### Bybit (Free, no auth) Base: `https://api.bybit.com` **Ticker**: ``` web_fetch url="https://api.bybit.com/v5/market/tickers?category=spot&symbol=BTCUSDT" ``` **Order book**: ``` web_fetch url="https://api.bybit.com/v5/market/orderbook?category=spot&symbol=BTCUSDT&limit=10" ``` **Klines**: ``` web_fetch url="https://api.bybit.com/v5/market/kline?category=spot&symbol=BTCUSDT&interval=D&limit=30" ``` **Futures funding rate**: ``` web_fetch url="https://api.bybit.com/v5/market/tickers?category=linear&symbol=BTCUSDT" ``` > `fundingRate` field in response ### Gate.io (Free, no auth) Base: `https://api.gateio.ws/api/v4` **Ticker**: ``` web_fetch url="https://api.gateio.ws/api/v4/spot/tickers?currency_pair=BTC_USDT" ``` **Order book**: ``` web_fetch url="https://api.gateio.ws/api/v4/spot/order_book?currency_pair=BTC_USDT&limit=10" ``` **Candlesticks**: ``` web_fetch url="https://api.gateio.ws/api/v4/spot/candlesticks?currency_pair=BTC_USDT&interval=1d&limit=30" ``` **All pairs**: ``` web_fetch url="https://api.gateio.ws/api/v4/spot/currency_pairs" ``` ### Bitget (Free, no auth) Base: `https://api.bitget.com` **Ticker**: ``` web_fetch url="https://api.bitget.com/api/v2/spot/market/tickers?symbol=BTCUSDT" ``` **Order book**: ``` web_fetch url="https://api.bitget.com/api/v2/spot/market/orderbook?symbol=BTCUSDT&limit=10" ``` **Candlesticks**: ``` web_fetch url="https://api.bitget.com/api/v2/spot/market/candles?symbol=BTCUSDT&granularity=1day&limit=30" ``` ## External Tools (Optional) - **Kraken CLI**: `github.com/krakenfx/kraken-cli` — official Go binary with built-in MCP, supports trading - **Bitget Agent Hub**: `npx bitget-mcp-server` — official, 36 tools for trading and market data - **Binance MCP**: `npx @snjyor/binance-mcp@latest` — Binance market data and trading via MCP - **Bybit MCP**: `npx bybit-mcp-server` — Bybit market data via MCP ## Cross-Exchange Comparison For price comparison across exchanges, fetch tickers from multiple exchanges in parallel and present in a table. Example approach: 1. Fetch BTC price from all 6 exchanges simultaneously 2. Compare bid/ask spreads 3. Note volume differences 4. Flag significant price discrepancies (potential arbitrage) ## Usage Tips - Public endpoints need no authentication — use for prices, order books, volume - For private endpoints (trading, balances), see `references/cex-auth.md` - Always use the correct symbol format per exchange (see table above) - Binance has the highest volume for most pairs — use as price reference - Funding rates indicate market sentiment: positive = longs pay shorts (bullish bias) - Rate limits vary: Binance ~1200/min, Coinbase ~10/sec, Kraken ~1/sec - For kline intervals: `1d` or `1D` or `1440` depending on exchange
Related Skills
Kraken Crypto Skill
Use the kraken_cli.py wrapper to query your Kraken account.
crypto-com-mcp-skill
Use Crypto.com MCP through UXC for exchange market data workflows with help-first discovery and read-only guardrails.
crypto-market-rank
Crypto market rankings and leaderboards. Query trending tokens, top searched tokens, Binance Alpha tokens, tokenized stocks, social hype sentiment ranks, smart money inflow token rankings, top meme token rankings from Pulse launchpad, and top trader PnL leaderboards. Use this skill when users ask about token rankings, market trends, social buzz, meme rankings, breakout meme tokens, or top traders.
apify-crypto-skill
Crypto data skills for AI agents — wraps Apify actors for KuCoin OHLCV and CoinGecko market data
github-crypto-search
Search and analyze crypto/blockchain repositories with developer profiles and activity metrics.
cryptoskill
Search, browse, and install crypto AI agent skills and MCP servers from cryptoskill.org — the largest curated registry of crypto skills with 450+ skills and 40+ MCP servers across 13 categories.
crypto-intel-security-scanner
Analyze Solidity code for vulnerabilities, get safety scores, and audit checklists.
crypto-intel-security-analyzer
Analyze Solidity code for common vulnerabilities and security issues with smart contract auditing checklist.
crypto-intel-docs-search
Semantic search across crypto project documentation, whitepapers, and codebases.
crypto-agentv2
Included script and Agent skills.
crypto-agent01
Included script and Agent skills.
crypto-agent
Included script and Agent skills.