Skip to main content

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.

Production base URL: https://www.iqearners.online — always use HTTPS. Prefix every path below with this origin.

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" }
}

Related in this guide

All guides