Vidbyte

API documentation

List Exams

List the exams owned by the authenticated principal. This is the route to use for history views, dashboards, and external synchronization workflows.

GET
/api/v1/exams/list

Example request

curl https://api.vidbyte.ai/api/v1/exams/list \
  -H "x-api-key: vb_live_your_api_key"

Example response

{
  "success": true,
  "data": [
    {
      "id": "exam_2Fkp90Qz",
      "item_type": "exam",
      "title": "Cloud fundamentals exam",
      "description": "Assess IAM, VPC, storage, and observability fundamentals.",
      "status": "active",
      "createdAt": "2026-03-12T10:00:00",
      "updatedAt": "2026-03-12T10:05:00"
    }
  ]
}