search_prediction_markets
Search Polymarket prediction markets by keyword to retrieve detailed market data, including titles, trading volumes, and outcome probabilities in JSON format.
Instructions
Search prediction markets by any term.
Parameters
search_term : str Identifier such as "argentina".
Returns
str
JSON array of objects with the schema:
[
{
"title": "Trump to win 2024?",
"volume": 123456.78,
"outcomes": [
{"option": "Yes", "probability": 0.42},
{"option": "No", "probability": 0.58}
]
},
…
]
Parse with json.loads
.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
search_term | Yes |