x402 Autonomous Payment · MCP Native · 10 Symbols

402crypto
Premium crypto data for AI agents

CoinGlass, CryptoQuant & Deribit-grade data — pay per call, no monthly subscription. 36 products across 10 symbols via MCP. Funding rates, OI, L/S ratios, CVD, on-chain metrics, options data and more.

CoinGlass costs $50–200/month. CryptoQuant costs $50+/month. 402crypto gives you the same data at fractions of a cent per call — with zero commitment.

Add to your MCP config:

{ "mcpServers": { "402crypto": { "url": "https://402-crypto.com/mcp" } } }

Or use the REST API with any HTTP client.

Try before you buy — free samples, no auth required:

curl https://402-crypto.com/api/v1/sample/rsi

6 free samples: price · funding · dominance · rsi · coinglass_cvd · liquidations

Why curated JSON beats raw APIs

Raw exchange APIs return data dumps. 402crypto returns intelligence — pre-computed, cross-validated, and annotated for LLM reasoning.

Raw Exchange API

{
  "symbol": "BTC",
  "interval": "1h",
  "data": [[1710892800, 67234.5, 67890.2, ...]]

  // Single timeframe, single source
  // No reliability information
  // No known limitations
  // You compute everything yourself
  // You handle stale data yourself
}

402crypto Curated JSON

{
  "meta": {
    "source": "hyperliquid_api",
    "reliability": "high",
    "staleness_seconds": 2.3,
    "limitations": ["Wilder smoothing: first 140 bars unreliable"]
  },
  "data": {
    "rsi": {
      "1m":  { "value": 42.3, "bars": 500 },
      "5m":  { "value": 55.1, "bars": 500 },
      "1h":  { "value": 58.9, "bars": 500 },
      "4h":  { "value": 61.2, "bars": 500 },
      "1d":  { "value": 54.5, "bars": 500 }
    }
  }
}

6 timeframes, one call

RSI, MACD, Bollinger Bands computed across 1m to 1d from 500+ bars. One API call replaces 30.

Reliability per source

Every field tagged with source, freshness, and reliability rating. Your model knows what to trust.

Limitations declared

Each product lists known blind spots. "CoinGlass 15min lag" or "Sub-4h resampled from 1m" — no hidden surprises.

No retail bias

Raw numeric values only. No "overbought" labels. No sentiment scores. Your LLM interprets — we measure.

7 independent sources

Hyperliquid, CoinGlass, CryptoQuant, Deribit, Finnhub, CoinGecko, Yahoo Finance. Cross-validated.

Fintech battle-tested

This pipeline powers live perpetuals trading across 10 symbols. Every product validated with real capital.

Why pay-per-call?

Premium data sources charge $50–200/month whether you use them or not. 402crypto gives you the same data — pennies at a time, only when you need it.

No monthly commitment

No $50+/month subscription. No annual contracts. Use it today, skip it tomorrow. Your agent pays only when it calls.

No API key signup

x402 protocol means your AI agent can pay autonomously. No registration, no OAuth, no waiting for approval.

Fractions of a cent

Most calls cost $0.001–$0.005. A full market scan across all products is under $0.20. Compare that to $200/month.

Multi-source, one bill

CoinGlass + CryptoQuant + Deribit + Hyperliquid data through a single endpoint. No juggling multiple subscriptions.

36 Data Products · 10 Symbols

BTC, ETH, SOL, DOGE, AVAX, LINK, ARB, OP, SUI, APT — every product available for all symbols.

Price & Momentum

  • price$0.001
  • candles$0.005
  • rsi$0.005
  • macd$0.005
  • bollinger_bands$0.005
  • atr$0.005
  • rsi_trendlines$0.005

Order Flow & Positioning

  • funding$0.001
  • cvd_realtime$0.005
  • coinglass_cvd$0.005
  • coinglass_oi_history$0.005
  • coinglass_ls_ratio$0.005
  • liquidations$0.005
  • orderbook$0.005

Structure & Macro

  • sr_signals$0.005
  • volume_profile$0.005
  • key_levels$0.005
  • market_structure$0.005
  • sp500$0.005
  • correlation$0.005
  • dominance$0.001

On-Chain (CryptoQuant)

  • sth_metrics$0.01
  • supply_profit_loss$0.01
  • exchange_flows$0.01
  • onchain_regime$0.01
  • options_surface$0.01

Composites (Multi-Source)

  • order_flow$0.02
  • structure$0.02
  • momentum$0.02
  • volatility$0.02
  • ohlcv_rsi$0.02
  • ohlcv_rsi_atr$0.02

Coming Soon

  • Cross-asset correlation matrices
  • Historical backtesting endpoints
  • WebSocket streaming
  • Additional symbols

Pay per call. No subscriptions.

USDC on Arbitrum One. 250ms finality. Sub-cent gas. x402 protocol.

Tier 1 — Snapshots
$0.001
per call

price, funding, dominance

Tier 2 — Standard
$0.005
per call

25 products: RSI, MACD, CVD, orderbook, S/R, correlations

Tier 3 — Composites
$0.02
per call

Multi-source bundles: order flow, structure, momentum

Recommended for high-volume agents

Prepaid USDC Balance

Deposit USDC once. Get an API key with instant access on every call. No per-call transaction. No payment latency. No gas fees per request.

Deposit USDC (Arbitrum One) to:

0x37B861F6e05a10C87938Ebc8a574197Dd525C866

1. Send any amount of USDC to the address above on Arbitrum One

2. Note your transaction hash

3. Your balance is credited and API key issued

Larger deposits = higher rate limits + priority support

Three ways to connect

1

MCP Client

Recommended

Claude Desktop, Cursor, OpenClaw, or any MCP-compatible agent. Two tools: list_products and get_market_data.

{
  "mcpServers": {
    "402crypto": {
      "url": "https://402-crypto.com/mcp"
    }
  }
}
2

REST API + API Key

Standard HTTP. Get a key by depositing USDC.

# List products
curl https://402-crypto.com/api/v1/products

# Fetch data
curl -H "Authorization: Bearer grd_your_key" \
  https://402-crypto.com/api/v1/products/rsi?symbol=BTC
3

x402 Autonomous Payment

No account needed

For AI agents that pay autonomously. HTTP 402 + USDC on Arbitrum.

# 1. Request (no auth) → 402 with payment details
GET https://402-crypto.com/api/v1/products/rsi

# 2. Pay 0.005 USDC on Arbitrum (~250ms)

# 3. Retry with proof
curl -H "X-PAYMENT: 0x<tx_hash>" \
  https://402-crypto.com/api/v1/products/rsi
36
Data products
10
Symbols supported
7
Independent sources
6
Timeframes per indicator
250ms
Payment finality