← Back to marketplace

X402.tunedfor.ai — Crypto Market Data API for AI Agents

external

Cross-exchange crypto market structure API. Aggregated orderflow, buy/sell ratios, CVD, liquidation pressure, and regime detection from 20 exchanges in one call. Free via MCP. Pay-per-call REST in USDC. No signup.

by Tunedfor7 endpoints100% uptime579ms avg

Price

from $0.2000

up to $5.00 per request

Network

base

Category

ai

On-chain txns

0

Uptime

100%

Avg latency

579ms

Checks

94

Status

Healthy

Base URL

https://x402.tunedfor.ai

Endpoints (7)

Discovered from on-chain x402 payment activity. Prices shown are per-call in USDC.

POST/analyze/address
base$0.2500

On-chain address profile with mechanical risk scoring. Auto-detects EVM or Solana.

POST/analyze/market
base$0.2500

Pre-trade macro check. Data-only, no LLM. Returns price snapshot, pulse direction with confidence, and macro regime your agent can branch on. 15 tokens.

POST/analyze/orderflow
base$0.5000

Cross-exchange orderflow verification. Data-only from 20 live venues. Returns CVD, whale activity, liquidation pressure, spot/perp delta, and exchange distribution. 24 tokens.

POST/data
base$0.2000

Raw Pillar token snapshot — 16 reliable fields, no LLM. Price, volume, on-chain metrics, orderflow, sentiment. 15 tokens. Use as feed input for your own models.

POST/data/history/1d
base$5.00

Historical daily OHLC + orderflow bars. Up to 5,000 bars, multi-year depth. Fields: open, high, low, close, vbuy, vsell, cvd, buy_ratio, lbuy, lsell. 24 tokens.

POST/data/history/1h
base$5.00

Historical hourly OHLC + orderflow bars. Up to 5,000 bars, up to 7 years history. Same fields as /data/history/1d. 24 tokens.

POST/data/history/5m
base$1.00

Historical 5-minute OHLC + orderflow bars. 17-day rolling window. Up to 5,000 bars. 24 tokens.

Payment

Protocolx402 (direct payment, USDC)
Networkbase

How to call

Via APIHub (recommended)No wallet · pay with credits · gasless
# one-time setup
npx @apihubio/cli register
npx @apihubio/cli topup 10

# call it
npx @apihubio/cli call https://x402.tunedfor.ai \
  -X POST \
  -d '{ /* check provider docs for input */ }'

# or save it to Claude/Cursor/Codex
npx @apihubio/cli install
npx @apihubio/cli add https://x402.tunedfor.ai
APIHub pays the provider on your behalf and debits your credit balance for the exact amount. No wallet setup, no gas, no per-call signing.
Via direct x402 (advanced)Bring your own wallet
import { wrapFetchWithPayment } from "@x402/fetch";
import { createWalletClient, http } from "viem";
import { privateKeyToAccount } from "viem/accounts";
import { base } from "viem/chains";

const account = privateKeyToAccount("0xYOUR_PRIVATE_KEY");
const client = createWalletClient({ account, chain: base, transport: http() });
const x402Fetch = wrapFetchWithPayment(client);

const res = await x402Fetch("https://x402.tunedfor.ai", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({ /* check provider docs for input */ }),
});
const data = await res.json();
Requires USDC on Base and gas on each call. The @x402/fetch client signs EIP-3009 transferWithAuthorization for each 402 response and retries.

This is an external service not operated by APIHub. Listing data is sourced from public on-chain records and third-party indexes. Payment goes directly to the service provider via the x402 protocol. APIHub does not guarantee availability, accuracy, or quality of external services.