API Reference
The Menutes API provides read-only access to your meeting recordings, transcripts, and summaries. All endpoints require API key authentication.Base URL
Endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/v1/recordings | List recordings with pagination and filtering |
| GET | /api/v1/recordings/{id} | Get recording metadata |
| GET | /api/v1/recordings/{id}/content | Get decrypted transcript and summary |
| GET | /api/v1/recordings/search | Search recordings by title |
Authentication
All requests require a Bearer token:Response Format
All responses are JSON. Successful responses return HTTP200. Errors include an error field:
Common Status Codes
| Code | Description |
|---|---|
| 200 | Success |
| 400 | Validation error (check request parameters) |
| 401 | Invalid or missing API key |
| 403 | Insufficient permissions or scope |
| 404 | Recording not found |
| 429 | Rate limit exceeded |
| 500 | Internal server error |