DOCUMENTATION
Developer Guides and Reference
Integrate Zentra AI commands into your workflows, sync external apps, or inspect our schema parameters.
Getting Started
API Reference
Introduction to Zentra Engine
Zentra connects with Google Workspace API accounts to run local vector stores. You can issue prompts to summarize active email threads, generate draft cards, and reschedule calendars instantly.
Setting Up Integrations
Go to settings, click 'Integrations', authorize Gmail/Google Calendar OAuth scopes. Zentra immediately indexes inbox metadata into an offline SQLite cache.
Workspace Command Engine
Press CMD+K to open the Command bar. Type '/summarize' or '/schedule meeting' to access our NLP workflow parser directly.
API Reference: Fetch Briefings
Issue a token-based authentication request to retrieve daily summarized briefings:
GET /api/v1/briefingsHTTPS
curl -X GET "https://api.zentra.ai/v1/briefings" \ -H "Authorization: Bearer znt_live_7x89ab..." \ -H "Content-Type: application/json"
RESPONSE 200 OKJSON
{
"status": "success",
"data": {
"date": "2026-06-17",
"unread_priorities": 3,
"briefing_summary": "Vikram Malhotra requested design approval for courtyard noon presentation. Calender Sync overlaps with Critique session at 10:15 AM."
}
}