The base URL is
https://www.api.vook.ai/api/v1. Chat runs against an existing
transcription, so you need a transcription id whose transcript is ready
(has_transcription is true). See Retrieve and export
to find one, or Transcribe a file to create one.Before you start
Mint an API key (see Authentication) and export it:requests package (pip install requests).
1. Ask a question
Send atitle and a prompt to the transcription’s chats collection. The
title is a short label you will see when listing chats; the prompt is the
question or instruction to run against the transcript.
answer:
The
answer is usually ready in the response. If it comes back null, the
answer is still being prepared, so re-request the chat by its id (see
step 3) until answer is set.
2. List the chats
Retrieve every chat saved against a transcription, newest first. Each item carries itsid, title, and created_at. Fetch a chat by id to read its
full prompt and answer.
3. Read a single chat
Fetch one chat by itsid to read its prompt and answer. Use this to pick
up an earlier exchange, or to check for an answer that was not yet set when you
created the chat.
Next steps
Retrieve and export
List, read, and export your transcriptions.
API Reference
Try every endpoint interactively in the playground.