Platform
Quiz API Overview
Architecture, base URL, response format, and integration surfaces for IQ Earners.
IQ Earners exposes REST-style JSON endpoints under /api/*. The web app uses cookie sessions; partners and LMS integrations typically use organization API keys or server-side session proxies.
All successful responses use { ok: true, data?: … } unless noted. Errors return { ok: false, error: string } with an appropriate HTTP status.
- Consumer quiz flow — bootstrap, practice demo, paid daily quiz, tournaments, leaderboard
- User account — stats, achievements, certificates, wallet, referrals
- Mock exams — catalog, start, submit, retake economy
- Organizations — multi-tenant portals, quiz authoring, analytics, API keys
- Platform admin — internal operators only (not documented for external tenants)
{
"ok": true,
"data": { "example": "payload" }
}