APIs for creating/editing media via agent orchestration and managing sessions with comprehensive control over user requests. The Agent Orchestration enables iterative creation and editing with context understanding. The agent translates plain conversational requests into actions and orchestrates calls to vimmerse tools and generate the required media accordingly.
| Method | Endpoint | Description | Access |
|---|---|---|---|
POST |
/ |
Interact with an agent, process prompts, and manage session turns | User |
POST |
/sessions |
Retrieve a list of sessions owned by the authenticated user | User |
GET |
/{session_id} |
Retrieve full conversation turn history for a session | User |
PUT |
/{session_id}/title |
Update the display title of a specific session | User |
DELETE |
/agent/{session_id} |
Delete a session and its associated data | User |
All requests require your API key in the X-Api-Key header:
headers = {
'X-Api-Key': 'YOUR_API_KEY'
}