{ "opencollection": "1.0.0", "info": { "name": "Quiz Discovery Quizzes API", "version": "1.0.0" }, "items": [ { "info": { "name": "Quizzes", "type": "folder" }, "items": [ { "info": { "name": "List quizzes", "type": "http" }, "http": { "method": "GET", "url": "https://quizapi.io/api/v1/quizzes", "params": [ { "name": "category", "value": "", "type": "query", "description": "Filter by category (case-insensitive)" }, { "name": "difficulty", "value": "", "type": "query", "description": "Filter by difficulty level" }, { "name": "tags", "value": "", "type": "query", "description": "Comma-separated list of tags" }, { "name": "topic", "value": "", "type": "query", "description": "Free-text search in title, description, and tags" }, { "name": "sort", "value": "", "type": "query", "description": "Sort order: popular (plays desc), newest (created desc), or title (alphabetical asc)" }, { "name": "limit", "value": "", "type": "query", "description": "Number of results to return (1–50)" }, { "name": "offset", "value": "", "type": "query", "description": "Number of results to skip for pagination" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns a paginated list of published, approved quizzes (plus your own). Supports filtering by category, difficulty, tags, and free-text topic search." }, { "info": { "name": "Create a quiz", "type": "http" }, "http": { "method": "POST", "url": "https://quizapi.io/api/v1/quizzes", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create a new quiz. Requires a Starter or Pro plan (admins are exempt). Quiz creation limits are enforced per plan. Admins can set `featured: true` to display the quiz in the Practice section immediately. Non-admin users can add `featured` in the body but it will be silently ignored." }, { "info": { "name": "Get a single quiz", "type": "http" }, "http": { "method": "GET", "url": "https://quizapi.io/api/v1/quizzes/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The quiz ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns full details for a single quiz including all questions and answers. Only published quizzes that are approved or owned by the API key holder are returned." } ] } ], "bundled": true }