search_markets
Search for prediction markets using customizable filters like status (open, closed, resolved) and sorting options (newest, score, liquidity). Retrieve relevant market data with a specified limit for efficient browsing.
Instructions
Search for prediction markets with optional filters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filter | No | ||
limit | No | Max number of results (1-100) | |
sort | No | ||
term | No | Search query |
Input Schema (JSON Schema)
{
"properties": {
"filter": {
"enum": [
"all",
"open",
"closed",
"resolved"
],
"type": "string"
},
"limit": {
"description": "Max number of results (1-100)",
"type": "number"
},
"sort": {
"enum": [
"newest",
"score",
"liquidity"
],
"type": "string"
},
"term": {
"description": "Search query",
"type": "string"
}
},
"type": "object"
}