Quick Start
No sign-up required. The core endpoint is public and free.
1. Get the live counters
Section titled “1. Get the live counters”curl https://polystrike.xyz/api/v1/meta/elonYou’ll get back something like this:
{ "timestamp": 1771246725679, "data": [ { "event_id": 206602, "event_title": "Elon Musk # tweets February 14 - February 16, 2026?", "start_ts": 1771088400000, "end_ts": 1771261200000, "polymarket_xtracker_counter": 65, "real_counter": 68, "polymarket_ui_counter": 65, "settlement_delta": 3, "display_delta": 3, "internal_delta": 0 } ]}What you’re seeing: The real count is 68 but the settlement oracle (XTracker) only shows 65. That settlement_delta of 3 means Polystrike has found 3 tweets the oracle hasn’t counted yet. The UI is also showing 65 — so traders on Polymarket are looking at a number that’s 3 behind reality.
The three delta fields are your edge signals:
| Field | Formula | What a positive value means |
|---|---|---|
settlement_delta | real − xtracker | Polystrike is ahead of the oracle |
display_delta | real − ui | The UI is showing a stale number |
internal_delta | ui − xtracker | The UI is ahead of or behind the oracle |
2. See the tweet feed
Section titled “2. See the tweet feed”curl https://polystrike.xyz/api/v1/meta/elon/tweetsReturns the 15 most recent tweets (free tier). Each tweet includes type flags (is_reply, is_quote, is_retweet) and a is_counted field that tells you whether it counts toward settlement.
3. Use with Claude Desktop (Recommended)
Section titled “3. Use with Claude Desktop (Recommended)”If you use Claude Desktop, skip the manual API calls and connect via MCP instead:
4. Upgrade to Pro
Section titled “4. Upgrade to Pro”Pro unlocks the prediction model, is_counted classification, full tweet history (with pagination), and trading signals.
$79/month. Contact to subscribe:
Once you have a key, pass it as a header:
curl -H "X-API-Key: ps_pro_..." \ https://polystrike.xyz/api/v1/prediction/elon5. For AI agents
Section titled “5. For AI agents”Fetch the machine-readable API definition:
curl https://polystrike.xyz/SKILL.mdThis single file contains the full API schema in a format optimized for LLM context injection. Your agent can discover, understand, and call the API autonomously from it.