Monitoring
Analyze Frame
Analyze a single image frame with VLM. Accepts a base64-encoded JPEG and a question — no stream URL needed.
POST
Analyze a pre-captured image frame with VLM.
Use this when you have your own frame capture mechanism (like TrioClaw) and just need VLM analysis — no stream URL validation or capture required.
Response includes
Response includes
How It Differs From Other Endpoints
POST /analyze-frame— Accepts raw base64 frame, no stream URLPOST /check-once— Captures frame from stream URL, validates livenessPOST /live-monitor— Creates continuous monitoring job
Use Cases
- TrioClaw — Desktop app that captures frames locally and needs VLM analysis
- Custom pipelines — Your own frame capture (RTSP, screenshots, etc.)
- Batch processing — Analyze many pre-captured images without stream overhead
Question Styles
Supports two question types:Yes/No Conditions
triggered: true/false.
Open-Ended Questions
answer with full description, triggered: null.
Request
Response
Error Handling
Related
- Monitoring workflows: Live Monitor
- Stream validation: Validate Stream
- Single check: Check Once
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Request to analyze a single image frame with VLM.
Used by TrioClaw and other clients that capture their own frames and just need VLM analysis — no stream URL or live validation needed.
Base64-encoded JPEG image (raw base64, no data: URI prefix)
Minimum string length:
1Question or condition about the image (e.g., 'what do you see?' or 'is there a person?')
Required string length:
1 - 1000Include the frame back in the response
Response
Successful Response
Response from frame analysis.