Market Intel & Signals ($0.02/call)
Market Intel & Signals ($0.02/call): Deep snapshot and execution microstructure for one Polymarket market: implied probability, best bid/ask/spread, 24h volume, liquidity depth, days to resolution, momentum, and estimated slippage to buy at $100 and $1000 order sizes from the live order book. Pass a slug, or omit it for the highest-volume open market right now. Signals are factual market data, not investment advice.
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://x402.botsmith.dev/polymarket/market
| Category | Code and developer |
|---|---|
| Provider host | x402.botsmith.dev |
| Networks | eip155:196, eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 2 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",
"queryParams": {},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"slug": {
"description": "Polymarket market slug from a market URL, e.g. 'will-the-fed-cut-rates-in-march'. Omit to get the single highest-volume open market right now.",
"minLength": 1,
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": false,
"properties": {
"daysToResolution": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"impliedProbability": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"description": "Price of the first outcome (0-1)"
},
"liquidity": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"liquidityRating": {
"enum": [
"thin",
"moderate",
"deep"
],
"type": "string"
},
"outcomes": {
"items": {
"type": "string"
},
"type": "array"
},
"priceChange24h": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"prices": {
"additionalProperties": false,
"properties": {
"bestAsk": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"bestBid": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"lastTrade": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"spread": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
}
},
"required": [
"bestBid",
"bestAsk",
"lastTrade",
"spread"
],
"type": "object"
},
"question": {
"type": "string"
},
"signals": {
"additionalProperties": false,
"description": "Execution microstructure derived from the live order book. Data, not investment advice.",
"properties": {
"bookDepthUsd": {
"anyOf": [
{
"additionalProperties": false,
"properties": {
"asks": {
"type": "number"
},
"bids": {
"type": "number"
}
},
"required": [
"bids",
"asks"
],
"type": "object"
},
{
"type": "null"
}
]
},
"slippage": {
"description": "Estimated average fill price to BUY the first outcome at $100 and $1000 order sizes",
"items": {
"additionalProperties": false,
"properties": {
"avgPrice": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"filled": {
"type": "boolean"
},
"orderUsd": {
"type": "number"
},
"sharesFilled": {
"type": "number"
},
"slippagePctVsBest": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
}
},
"required": [
"orderUsd",