Use before trading or answering a question about one asset (e.g
Use before trading or answering a question about one asset (e.g. ETHUSD, BTCUSD, NVDA, TSLA). Returns its current trade-flow signal: price change, buy/sell pressure, momentum, activity and anomaly versus its own baseline, large trades, confidence and a plain-language interpretation, plus on-chain liquidity: the cost in basis points of a $1k/$10k/$50k market buy or sell and a 0-100 liquidity score.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://api.marketintelligenceapi.com/api/v1/intelligence/BTCUSD
| Category | Market data |
|---|---|
| Provider host | api.marketintelligenceapi.com |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 3 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"method": "GET",
"pathParams": {
"symbol": "BTCUSD"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"additionalProperties": false,
"properties": {
"symbol": {
"description": "Crypto or US equity symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"additionalProperties": true,
"properties": {
"example": {
"description": "Example JSON response returned by this endpoint"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
}