Skip to main content

API Reference

The Menutes API provides read-only access to your meeting recordings, transcripts, and summaries. All endpoints require API key authentication.

Base URL

https://app.menutes.com

Endpoints

MethodEndpointDescription
GET/api/v1/recordingsList recordings with pagination and filtering
GET/api/v1/recordings/{id}Get recording metadata
GET/api/v1/recordings/{id}/contentGet decrypted transcript and summary
GET/api/v1/recordings/searchSearch recordings by title

Authentication

All requests require a Bearer token:
Authorization: Bearer mnts_your_key_here
See Authentication for details on creating and managing API keys.

Response Format

All responses are JSON. Successful responses return HTTP 200. Errors include an error field:
{
  "error": "Invalid API key"
}

Common Status Codes

CodeDescription
200Success
400Validation error (check request parameters)
401Invalid or missing API key
403Insufficient permissions or scope
404Recording not found
429Rate limit exceeded
500Internal server error