Vidbyte

API documentation

List Quickhits

List the Quickhits owned by the authenticated API principal. This is the retrieval path you use to resync your application state with stored Quickhit resources.

GET
/api/v1/quickhits/list

Example request

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

Example response

{
  "success": true,
  "data": [
    {
      "id": "qh_oT8g2lQm8p",
      "topic": "Explain event sourcing to a CRUD engineer",
      "mode": "broad",
      "createdAt": "2026-03-12T10:00:00",
      "sections": [{ "key": "mental-model", "content": { "paragraphs": ["Event sourcing persists state changes as immutable facts you can replay later."] } }]
    }
  ],
  "pagination": { "limit": 100, "page": 1, "has_more": false }
}