# /quiz **Category**: joc **Summary**: Random quiz question (or for a specific work) ## Description Returns a BAC-style quiz question with 4 options and the correct answer marked. Pool of 368 questions. With work argument, returns a random question from that work. ## Syntax ``` /quiz [slug] ``` ## Arguments - **slug** (slug) (optional): Work slug Example: `morometii` ## Examples **Request**: `/quiz morometii` **Response**: `{"ok":true,"type":"quiz","card":{"question":"...","options":["A","B","C","D"],"correctIndex":2,"explanation":"...","workTitle":"Moromeții"}}` ## How to execute ``` POST /api/v1/ai/exec Content-Type: application/json { "cmd": "quiz", "args": [] } ```