Vidbyte

API documentation

Get a Quickhit

Fetch one previously generated Quickhit by its encrypted public identifier. Use this after you have stored the `id` returned from create or list operations.

GET
/api/v1/quickhits/get/{encrypted_id}

Example request

curl https://api.vidbyte.ai/api/v1/quickhits/get/qh_oT8g2lQm8p \
  -H "Authorization: Bearer vb_live_your_api_key"

Example response

{
  "success": true,
  "id": "qh_oT8g2lQm8p",
  "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."] } }]
  }
}

Parameter information

These are the public parameters for /api/v1/quickhits/get/{encrypted_id}. Path parameters and request-body fields are shown together so the page stays focused on the live request contract you actually send.

encrypted_idstringRequired

The public encrypted identifier previously returned by a create or list route. Pass it back exactly as returned when you want to fetch that resource again.