Data Product

Binance Data

Spot and futures OHLCV candles, order books, trades, and funding rates from Binance.

Request accessMCP1 credit per callFree tier: 200 credits
189
Pairs
90d
Spot Retention
30d
Futures Retention

MCP

Connect from any MCP-compatible agent (Claude Desktop, UcoWorker, Cursor, etc.). Create a UC Token, then add this config.

Create UC Token
{
  "mcpServers": {
    "uc-binance": {
      "type": "streamable-http",
      "url": "https://api.ucoworker.com/v1/data/binance/mcp",
      "headers": {
        "Authorization": "Bearer ${UC_TOKEN}"
      }
    }
  }
}

MCP Tools

Discovery

list_tickers

List all available tickers for a market (spot, usdm, coinm).

get_ticker_info

Ticker details including price and 24h stats.

get_book_ticker

Latest best bid/ask for a ticker.

Market Data

get_ohlcv

Trade OHLCV candlesticks. Intervals: 1m to 1d. Max 1440 per request.

get_quote_ohlcv

Quote-side OHLCV (bid/ask candles). Max 1440 per request.

get_trades

Raw trade records for a symbol and time range.

Order Book

get_order_book

Latest order book snapshot with spread and mid price.

get_order_book_history

Aggregated order book metrics over time. Max 1440 per request.

get_order_book_snapshots

Raw order book snapshots. Max 1000 per request.

Funding Rate

get_funding_rate

Historical funding rates for futures (usdm/coinm). 365 days retention.


Authentication

Two ways to authenticate: use your UC access_token (JWT from login), or create a dedicated UC Token in your dashboard for scripts and CI pipelines.

Bearer Token (JWT or UC Token)

# Using JWT (from login)
Authorization: Bearer <your_access_token>

# Using UC Token (from dashboard)
Authorization: Bearer uc_sk_...

Rate Limits

Per-user sliding window rate limits protect availability. Each data product has independent counters. Limits reset every hour.

PlanRequests / Hour
Free100
Pro10,000
Higher limitsBy request

Response Headers

X-RateLimit-Limit: 10000        # Current hourly limit
X-RateLimit-Remaining: 9542     # Requests left in current window
X-RateLimit-Reset: 2847         # Seconds until window resets
Retry-After: 2847               # Only on 429 responses

Check Your Usage

curl -H "Authorization: Bearer $UC_TOKEN" \
  https://api.ucoworker.com/v1/data/binance/rate-limit

Pricing

1 credit per call (MCP or REST)

Same credits you use for Cloud Agent

Free tier: 200 credits

See all plans →
Beta

This data product is in beta -- we'd love your feedback

Report data quality issues, request new endpoints, or share what works well. Submit up to 50 feedback items per day via the API.

POST /v1/feedback/binance
curl -X POST https://api.ucoworker.com/v1/feedback/binance \
  -H "Authorization: Bearer $UC_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"content":"Describe the issue or suggestion","category":"data-quality"}'

Categories: data-quality, missing-data, feature-request, general. Max 2,000 chars per submission.