DripMetricsAI (https://dripmetrics
DripMetricsAI (https://dripmetrics.ai/) provides on-demand order-book microstructure metrics computed fresh per request from Binance's public depth snapshot. Agents can pay per request via x402 and receive structured JSON metrics without subscriptions or API keys. Spread measures the current best-bid/best-ask gap, in basis points of mid price.
50000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-23
updated
Provider
api.dripmetrics.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xc9b70D8d342609437bc87Ec3C877911a306d3e6A",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"components": {
"bestAsk": {
"price": 108006.8,
"qty": 0.55
},
"bestBid": {
"price": 108000.1,
"qty": 0.42
},
"midPrice": 108003.45,
"spreadAbsolute": 6.7,
"spreadBps": 0.62
},
"computedAt": "2026-07-23T14:00:00.000Z",
"metric": "spread",
"pair": "BTCUSDT",
"sampleSize": {
"askLevels": 100,
"bidLevels": 100
},
"source": {
"depth": "https://data-api.binance.vision/api/v3/depth?symbol=BTCUSDT"
},
"value": 0.62
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"pair": {
"default": "BTCUSDT",
"description": "Binance-native pair. BTCUSDT, ETHUSDT, and SOLUSDT are supported.",
"enum": [
"BTCUSDT",
"ETHUSDT",
"SOLUSDT"
],
"type": "string"
}
},
"required": [],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": false,
"properties": {
"components": {
"type": "object"
},
"computedAt": {
"format": "date-time",
"type": "string"
},
"metric": {
"type": "string"
},
"pair": {
"enum": [
"BTCUSDT",
"ETHUSDT",
"SOLUSDT"
],
"type": "string"
},
"sampleSize": {
"type": "object"
},
"source": {
"type": "object"
},
"value": {
"type": [
"number",
"null"
]
}
},
"required": [
"metric",
"pair",
"value",
"components",
"sampleSize",
"source",
"computedAt"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.dripmetrics.ai/orderbook/spread" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.dripmetrics.ai/orderbook/spread");
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://api.dripmetrics.ai/orderbook/spread")
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/4215.json, and this resource appears in /discovery/resources and /discovery/search.