Intelligence Queries
After a transcript completes, ask follow-up questions to extract summaries, action items, sentiment, and more.
Submit a Question
POST https://app.resemble.ai/api/v2/speech-to-text/{uuid}/ask
Response:
Check Question Status
GET https://app.resemble.ai/api/v2/speech-to-text/{uuid}/questions/{question_uuid}
Response:
List Questions
GET https://app.resemble.ai/api/v2/speech-to-text/{uuid}/questions
Supports page and per_page query parameters (default 25, max 50).
Common Questions
- Action items – “What action items were mentioned and who owns them?”
- Decisions – “What decisions were made?”
- Summaries – “Provide a 3-sentence executive summary.”
- Sentiment – “What is the overall sentiment of this conversation?”
- Entities – “List all people and companies referenced.”
- Data extraction – “Extract all statistics and numerical data mentioned.”
Workflow
- Ensure the transcript status is
completed. - Submit a question using the
askendpoint. - Store the returned question UUID.
- Poll the status endpoint until
completed. - Retrieve the answer (and cache it if you will reuse it).
Use exponential backoff when polling to avoid hitting rate limits.
Error Handling
Failures return standard error objects, for example:
Other common errors include missing query values, invalid transcript UUIDs, or authorization failures.
