Skip to main content

Get XP summary

GET /api/v1/gamification/xp-summary
{
  "data": {
    "total_xp": 4820,
    "current_streak": 14,
    "longest_streak": 21,
    "badges_earned": 7,
    "global_rank": 142
  }
}

Get XP history

GET /api/v1/gamification/xp-history?limit=20

Get badges

GET /api/v1/gamification/badges

Get leaderboard

GET /api/v1/gamification/leaderboard?scope=track&limit=20
scope options: cohort, track, global

Activate Focus Freeze

POST /api/v1/gamification/focus-freeze/activate
Protects your streak for one missed day.

title: “Subscriptions” description: “Check plan status and available features.”

Get current subscription

GET /api/v1/subscriptions/current
{
  "data": {
    "plan": "pro",
    "status": "active",
    "current_period_end": "2026-04-07T00:00:00Z",
    "cancel_at_period_end": false
  }
}

Available plans

GET /api/v1/subscriptions/plans
{
  "data": [
    {
      "id": "free",
      "name": "Free",
      "price_monthly": 0,
      "features": ["Foundation track", "AI tutor (limited)", "Basic leaderboard"]
    },
    {
      "id": "pro",
      "name": "Pro",
      "price_monthly": 29,
      "price_annual": 199,
      "features": ["All 4 career tracks", "Unlimited labs", "Full AI tutor", "Cohort matching", "Certificates"]
    }
  ]
}