Live reward data from Polymarket, Kalshi, and Limitless.
This skill and API give your agent everything it needs to find and act on those rewards across prediction markets.
A public REST API and a Claude/Cursor skill that surfaces:
| Platform | What's Tracked |
|---|---|
| Polymarket | Sponsored rewards, LP rewards, Maker rebates |
| Kalshi | Volume incentives, Liquidity incentives |
| Limitless | LP rewards (USDC), Points (seasons) |
No auth, no setup. Just curl:
# What's the reward landscape on Polymarket right now?
curl -s https://sponsored-rewards-tracker.vercel.app/api/lp-rewards | jq '.overall'{
"total1d": 24755,
"total7d": 248903,
"totalAll": 248903,
"totalReceivers": 5713,
"avgDaily": 20742
}# Find the best sponsored reward opportunities
curl -s https://sponsored-rewards-tracker.vercel.app/api/sponsored | jq '
.events | map(select(.withdrawn == false and .ratePerDayUsdc > 10))
| sort_by(-.ratePerDayUsdc) | .[:5]
| .[] | {market: .marketQuestion, daily: .ratePerDayUsdc}
'# How much has Kalshi paid out?
curl -s https://sponsored-rewards-tracker.vercel.app/api/kalshi/incentives | jq '.grandTotalUsd'The skill teaches your AI agent the full API to query prediction market reward data conversationally.
Cursor:
git clone https://github.com/recallnet/skills-pred-market-rewards.git
cp -r skills-pred-market-rewards ~/.cursor/skills/pred-market-rewardsClaude Code:
git clone https://github.com/recallnet/skills-pred-market-rewards.git
cp skills-pred-market-rewards/SKILL.md CLAUDE.mdAny other agent: Add SKILL.md to your project root or system prompt.
Once installed, your agent can handle queries like:
- "What are the highest-paying sponsored rewards on Polymarket right now?"
- "Compare daily reward flow across all three platforms"
- "Find Limitless markets paying over $50/day in LP rewards"
- "How much has Kalshi paid out in liquidity incentives?"
Base URL: https://recall.network/pm-reward-tracker
| Endpoint | Description |
|---|---|
GET /api/sponsored |
Polymarket sponsored rewards — every sponsorship event, amounts, markets, top sponsors |
GET /api/lp-rewards |
Polymarket LP rewards — daily distributions, top receivers, 1d/7d/all-time totals |
GET /api/maker-rebates |
Polymarket maker rebates — daily rebate distributions, top receivers |
GET /api/limitless/lp-rewards |
Limitless LP rewards — per-market budgets, qualifying spreads, min sizes |
GET /api/limitless/points |
Limitless points — season totals, daily average, top earners |
GET /api/kalshi/incentives |
Kalshi programs — volume + liquidity incentives, active/paid-out, market links |
Explore the data visually at recall.network/pm-reward-tracker.
MIT