Order flow snapshot — CVD, OI, whale CVD, session levels, proximity to key levels, volume
Order flow snapshot — CVD, OI, whale CVD, session levels, proximity to key levels, volume gear ratio. Live from rook-engine MMT WebSocket feed
125000 (raw units)
price
21
calls / 30d
1
unique payers
2026-09-09
updated
Provider
agents.ai-rook.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xd5f96558FCb1f127c77C7d95EEa067F526d08618",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "125000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "7qXhgSHxsYG5yDBUDi2KN6NnXydBfyvQDkB6APfq96x9",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "125000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"bars": 100,
"symbol": "BTCUSDT",
"timeframe": "15m"
},
"type": "http"
},
"output": {
"example": {
"cvd": {
"direction": "up",
"value": 1240000
},
"gear": "high",
"oi": {
"direction": "up",
"value": 8900000000
},
"symbol": "BTCUSDT",
"timestamp": "2026-07-22T07:00:00Z",
"volume_ratio": 1.8,
"whale_cvd": "bullish"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"bars": {
"default": 100,
"maximum": 500,
"minimum": 1,
"type": "integer"
},
"symbol": {
"default": "BTCUSDT",
"type": "string"
},
"timeframe": {
"default": "15m",
"enum": [
"1m",
"5m",
"15m",
"1h",
"4h"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"docs": {
"llms_txt": "https://agents.ai-rook.com/llms.txt",
"manifest": "https://agents.ai-rook.com/.well-known/x402.json",
"openapi": "https://agents.ai-rook.com/openapi.json",
"status": "https://agents.ai-rook.com/status.html"
},
"eip2612GasSponsoring": {},
"erc20ApprovalGasSponsoring": {}
}Use it
curl
curl "https://agents.ai-rook.com/api/order-flow" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agents.ai-rook.com/api/order-flow");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://agents.ai-rook.com/api/order-flow")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4895.json, and this resource appears in /discovery/resources and /discovery/search.