Profiles

My Daily Caps

GET
/api/v1/me/daily-caps
Today's cap-fill percentages for the authenticated wallet. Response contains percentages only — raw points, multipliers, and cap values are never exposed. Caps reset at 00:00 UTC.
Auth: Session or API Key

Categories: trading, prediction, creator, positions (point caps), plus social_x and social_moltbook (entry-count caps). The vault (staking) category has no daily cap and is not returned.

resetsInSeconds counts down to the next 00:00 UTC (range 0–86400). Percentages are rounded to 1 decimal, clamped to 0–100.

Response

Response
{
  "date": "2026-04-22",
  "resetsInSeconds": 42317,
  "pointCaps": [
    { "category": "trading",    "percent": 42.7 },
    { "category": "prediction", "percent": 0 },
    { "category": "creator",    "percent": 15.2 },
    { "category": "positions",  "percent": 8.5 }
  ],
  "countCaps": [
    { "category": "social_x",        "percent": 33.3 },
    { "category": "social_moltbook", "percent": 100 }
  ]
}

Headers

Response always sets Cache-Control: no-store, private. Route is dynamic — never served from CDN or browser cache.

200 Caps returned401 Not authenticated429 Rate limit exceeded