| name | snipe-rewards |
| description | Query live reward and incentive data from Polymarket, Limitless, and Kalshi prediction markets. Use when building agents that farm LP rewards, track maker rebates, discover sponsored reward opportunities, compare platform incentives, or analyze market-making earnings across prediction markets. |
Snipe Rewards — Prediction Market Rewards API
When to use this skill
Use when the user asks about:
- Polymarket rewards (sponsored, LP, maker rebates)
- Limitless Exchange rewards (LP rewards, points)
- Kalshi incentive programs (volume, liquidity)
- Comparing rewards across prediction market platforms
- Building agents that farm or track reward data
- Finding the best markets for market-making rewards
REST API
Base URL: https://sponsored-rewards-tracker.vercel.app
No authentication required. All endpoints return JSON.
| Endpoint | Data |
|---|
GET /api/sponsored | Polymarket sponsored rewards |
GET /api/lp-rewards | Polymarket LP rewards |
GET /api/maker-rebates | Polymarket maker rebates |
GET /api/limitless/lp-rewards | Limitless LP rewards |
GET /api/limitless/points | Limitless points |
GET /api/kalshi/incentives | Kalshi incentive programs |
Append ?force=1 to bypass cache. Responses include Cache-Control: s-maxage=60, stale-while-revalidate=300.
Response Shapes
Polymarket Sponsored Rewards (/api/sponsored)
{
events: [{
marketId, sponsor, amountUsdc, startTime, endTime,
ratePerDayUsdc, marketQuestion, eventSlug, withdrawn, consumedUsdc
}],
overall: {
totalEvents, uniqueSponsors, uniqueMarkets,
totalAmountUsdc, netAmountUsdc, totalReturnedUsdc, totalConsumedUsdc
}
}
Polymarket LP Rewards (/api/lp-rewards) & Maker Rebates (/api/maker-rebates)
{
dailyTotals: [{ date, totalUsdc, transfers, receivers }],
topReceivers: [{ address, amount1d, amount7d, amountAll, pct1d }],
overall: { total1d, total7d, totalAll, totalReceivers, avgDaily }
}
Limitless LP Rewards (/api/limitless/lp-rewards)
{
totalDailyBudget, rewardableMarkets, totalClobMarkets,
categories: [{ category, marketCount, dailyReward }],
topMarkets: [{ title, slug, dailyReward, maxSpread, minSize, category, volume }],
nextPayoutUtc
}
Limitless Points (/api/limitless/points)
{
allTimeTotal, thisWeekTotal, dailyAverage,
seasons: [{ name, totalPoints, periods: [{ start, end, points }], status }],
currentSeason,
topEarners: [{ rank, address, displayName, weeklyPoints, totalPoints, rankName }],
nextDistribution
}
Kalshi Incentives (/api/kalshi/incentives)
{
grandTotalUsd,
active: { totalPrograms, totalRewardUsd, volumePrograms, volumeRewardUsd, liquidityPrograms, liquidityRewardUsd },
paidOut: { totalPrograms, totalRewardUsd, volumePrograms, volumeRewardUsd, liquidityPrograms, liquidityRewardUsd },
closed: { totalPrograms, totalRewardUsd, volumePrograms, volumeRewardUsd, liquidityPrograms, liquidityRewardUsd },
activeMarkets: [{ marketTicker, title, eventTicker, type, rewardUsd, startDate, endDate, targetSize, discountBps }],
topPaidOutMarkets: [{ marketTicker, title, eventTicker, type, rewardUsd, startDate, endDate }],
recentPayouts: [{ marketTicker, title, type, rewardUsd, startDate, endDate }]
}
Platform Overview
| Platform | Chain | Reward Types | Payout Frequency |
|---|
| Polymarket | Polygon | Sponsored rewards, LP rewards, Maker rebates | Continuous (on-chain) |
| Limitless | Base | LP rewards (USDC), Points (seasons) | Daily at 12:00 UTC |
| Kalshi | Centralized | Volume incentives, Liquidity incentives, 3.75% APY | Per-program period |
Example Queries
curl -s https://sponsored-rewards-tracker.vercel.app/api/lp-rewards | jq '.overall'
curl -s https://sponsored-rewards-tracker.vercel.app/api/sponsored | jq '
.events | map(select(.withdrawn == false and .ratePerDayUsdc > 10))
| sort_by(-.ratePerDayUsdc) | .[:10]
| .[] | {market: .marketQuestion, daily: .ratePerDayUsdc, remaining: .amountUsdc}
'
curl -s https://sponsored-rewards-tracker.vercel.app/api/kalshi/incentives | jq '{
grandTotal: .grandTotalUsd,
activePrograms: .active.totalPrograms,
activeReward: .active.totalRewardUsd
}'
curl -s https://sponsored-rewards-tracker.vercel.app/api/limitless/lp-rewards | jq '
.topMarkets[:10] | .[] | {title, dailyReward, maxSpread, minSize}
'
curl -s https://sponsored-rewards-tracker.vercel.app/api/limitless/points | jq '{
allTime: .allTimeTotal, daily: .dailyAverage, season: .currentSeason
}'
Key Numbers
- Polymarket sponsored rewards: $489K deposited by 10K+ sponsors across 4K+ markets
- Polymarket LP rewards: ~$21K/day to 5,700+ LPs
- Polymarket maker rebates: ~$150K/day to 6,500+ makers
- Limitless LP rewards: ~$4–6K/day across ~200 markets, paid daily at 12:00 UTC
- Limitless points: ~335K/day, 102M all-time, Season 3 active
- Kalshi: $1.43M total paid out, 495 active programs ($48K in pools)