Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

Prediction Market Rewards Skill

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.

What You Get

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)

Quick Start

Use the API directly

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'

Install the Claude Skill

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-rewards

Claude Code:

git clone https://github.com/recallnet/skills-pred-market-rewards.git
cp skills-pred-market-rewards/SKILL.md CLAUDE.md

Any 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?"

API Reference

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

Dashboard

Explore the data visually at recall.network/pm-reward-tracker.

Related

License

MIT

About

Live reward data from Polymarket, Kalshi, and Limitless — Claude skill and public API for AI agents farming prediction market incentives

Resources

Stars

Watchers

Forks

Releases

Packages

Used by

Contributors