⥠API & Advanced
API Reference
đ
Updated Mar 10, 2026
API Reference
Tutor Zoom provides a REST API through the SaaS backend for advanced integrations.
Authentication
All API requests require a valid license key sent as a header:
X-License-Key: your-license-key-here
Content-Type: application/json
Base URL
https://tutorzoom.live/api/v1
Endpoints
| Method | Endpoint | Description |
|---|---|---|
POST | /sessions | Create a new Zoom session |
GET | /sessions/{id} | Get session details |
PUT | /sessions/{id} | Update a session |
DELETE | /sessions/{id} | Delete a session |
GET | /site/status | Check site/license status |
Create Session Example
POST /api/v1/sessions
{
"topic": "Advanced Mathematics - Week 5",
"start_time": "2026-04-01T10:00:00",
"duration": 90,
"timezone": "Africa/Cairo"
}
Response
{
"success": true,
"data": {
"session_id": 42,
"meeting_id": "85012345678",
"join_url": "https://zoom.us/j/85012345678",
"start_url": "https://zoom.us/s/85012345678?zak=..."
}
}