Skip to main content
GET
/
api
/
v1
/
recordings
List meeting recordings
curl --request GET \
  --url https://app.menutes.com/api/v1/recordings \
  --header 'Authorization: Bearer <token>'
{
  "recordings": [
    {
      "id": "<string>",
      "meetingTitle": "<string>",
      "status": "UPLOADING",
      "duration": 123,
      "sharingScope": "PRIVATE",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "processingPhase": "<string>",
      "speakerCount": 123,
      "sourceType": "BROWSER",
      "user": {
        "id": "<string>",
        "name": "<string>"
      },
      "team": {
        "id": "<string>",
        "name": "<string>"
      },
      "isOwner": true
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "totalPages": 123,
    "hasNextPage": true,
    "hasPrevPage": true
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Create a key in Settings → API Keys. Key format: mnts_ followed by 40 hex characters.

Query Parameters

page
integer
default:1
limit
integer
default:20
Required range: x <= 100
status
enum<string>
Available options:
UPLOADING,
PROCESSING,
COMPLETED,
FAILED

Search by meeting title (case-insensitive)

Maximum string length: 200
view
enum<string>
default:my

'my' = own recordings, 'team' = shared with your team, 'organization' = org-wide, 'all' = admin view

Available options:
my,
team,
organization,
all

Response

Paginated list of recordings

recordings
object[]
pagination
object