Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Unified crypto market data API and scripts for exchanges, markets, tickers, OHLCV, and orderbooks.
Unified crypto market data API and scripts for exchanges, markets, tickers, OHLCV, and orderbooks.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Use this skill for crypto data-related searches that need real-time or normalized market data across multiple exchanges using the Milaex unified REST API.
One place to query exchanges, markets/pairs, tickers, OHLCV/candles, and orderbooks. Normalized request/response shapes across exchanges. Consistent JSON output for piping into other tools. Friendly error output (HTTP code + Milaex error payload) and optional rate-limit header printing.
Milaex is a unified crypto market data SaaS with a REST API across many exchanges. Data types include markets, tickers, OHLCV, and order books. API access is via an API key from the dashboard. Milaex is data-only (no custody, no trade execution). Docs: https://api.milaex.com/api-docs/index.html
Go to https://milaex.com and sign up or log in. In the Milaex dashboard, generate an API key for the market data API.
Required env vars: MILAEX_API_KEY (sent as x-api-key)
This lets Clawdbot inject the env var when running the skill. Edit ~/.clawdbot/openclaw.json: { "skills": { "entries": { "milaex": { "enabled": true, "env": { "MILAEX_API_KEY": "..." } } } } }
export MILAEX_API_KEY="..."
These scripts map to the following Milaex endpoints: GET /api/v1/exchange GET /api/v1/exchange/markets?exchange= GET /api/v1/exchange/ticker?exchange=&base_name="e_name= GET /api/v1/exchange/tickers?exchange=&symbols= GET /api/v1/exchange/ohlcv?exchange=&base_name="e_name= GET /api/v1/exchange/orderbook?exchange=&base_name="e_name= GET /api/v1/exchange/orderbook/complete?exchange=&base_name="e_name=
Which exchanges are supported? -> GET /api/v1/exchange What markets does exchange X support? -> GET /api/v1/exchange/markets?exchange= Current price for BTC/USDT on exchange X? -> GET /api/v1/exchange/ticker?exchange=&base_name="e_name= Multiple symbols on exchange X? -> GET /api/v1/exchange/tickers?exchange=&symbols= Candle data for a pair? -> GET /api/v1/exchange/ohlcv?exchange=&base_name="e_name= Orderbook snapshot? -> GET /api/v1/exchange/orderbook?exchange=&base_name="e_name=
All commands print JSON to stdout. Rate limit headers (when present) print to stderr.
python3 skills/milaex/scripts/list_exchanges.py # or bash skills/milaex/bin/list_exchanges.sh
python3 skills/milaex/scripts/list_markets.py --exchange binance
python3 skills/milaex/scripts/get_ticker.py --exchange binance --symbol BTC/USDT
python3 skills/milaex/scripts/get_tickers.py --exchange binance python3 skills/milaex/scripts/get_tickers.py --exchange binance --symbols "BTC/USDT,ETH/USDT"
Note: Milaex v1 OpenAPI exposes OHLCV by exchange/base_name/quote_name. The script accepts --timeframe for forward-compat but does not send it (to avoid 400s). python3 skills/milaex/scripts/get_ohlcv.py --exchange binance --symbol BTC/USDT --limit 200
python3 skills/milaex/scripts/get_orderbook.py --exchange binance --symbol BTC/USDT --limit 50 python3 skills/milaex/scripts/get_orderbook.py --exchange binance --symbol BTC/USDT --complete
Monitor best bid/ask spreads across venues Build simple cross-exchange arb screens Detect volatility regime changes via OHLCV Alerting: βprice moved X% in Y minutesβ
Pull normalized tick data for dashboards Build research datasets (candles + orderbook snapshots) Run periodic ETL without maintaining exchange adapters
Answer coverage questions (exchanges, pairs, availability) Validate pricing/latency assumptions with real data
Keep within endpoint RPM limits (Milaex also returns standard rate-limit headers when enabled for your plan). Scripts require Python 3 and requests. Install dependency if needed: python3 -m pip install --user requests
This is a small smoke test that verifies unauthorized handling using a dummy key. Some deployments return 401, others return 404 with an "Api Key not found" message. MILAEX_API_KEY=dummy python3 skills/milaex/scripts/test_unauthorized.py
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.