List Quizzes
List the quizzes owned by the authenticated principal. This route is useful for history views, audit trails, and state reconciliation in client applications.
GET
/api/v1/quizzes/list
Example request
curl https://api.vidbyte.ai/api/v1/quizzes/list \
-H "x-api-key: vb_live_your_api_key"Example response
{
"success": true,
"data": [
{
"id": "quiz_9Yv7k12Lm",
"item_type": "quiz",
"title": "HTTP caching mastery check",
"description": "Assess whether junior engineers understand freshness, validators, and revalidation.",
"quiz_type": "multiple_choice",
"status": "active",
"createdAt": "2026-03-12T10:00:00",
"updatedAt": "2026-03-12T10:05:00"
}
]
}