get_resolution
Analyze prediction market resolution by retrieving time urgency, mechanism details, and theta estimates for Kalshi or Polymarket markets.
Instructions
Get resolution intelligence for a market — time urgency, mechanism, theta estimate.
Args: platform: Platform: "kalshi" or "polymarket". market_id: Platform-specific market identifier.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| platform | Yes | ||
| market_id | Yes |
Implementation Reference
- src/rekko_mcp/server.py:122-129 (handler)The get_resolution tool implementation, which proxies a GET request to the Rekko API to fetch market resolution intelligence.
async def get_resolution(platform: str, market_id: str) -> str: """Get resolution intelligence for a market — time urgency, mechanism, theta estimate. Args: platform: Platform: "kalshi" or "polymarket". market_id: Platform-specific market identifier. """ return await _request("GET", f"/v1/markets/{platform}/{market_id}/resolution")