search_prediction_markets
Search Polymarket prediction markets by specific terms to retrieve market data, including titles, volumes, and outcome probabilities, in JSON format for analysis.
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 |