POST
/
v1
/
meetings
/
{meetingId}
/
download
Generates a temporary link to download the recording
curl --request POST \
  --url https://api.meetgeek.ai/v1/meetings/{meetingId}/download \
  --header 'Authorization: <api-key>'
{
  "download_link": "https://media.meetgeek.ai/api/download?token=jQzYmM1NTAtM2NmMi00MmNhLW",
  "expires_in": 14400
}
This feature is available starting with the Pro plan.
The download link is valid for up to 4 hours from the time of generation. Within that 4-hour window, repeated requests for the same recording will return the same download link.
A maximum of 5 simultaneous downloads is allowed per meeting id. Additional requests will be denied until active downloads complete.
Please only share the download link only with people or automations you trust, as anyone possessing the link will be able to download the meeting recording.

Authorizations

Authorization
string
header
required

Type "Bearer" followed by a space and a token

Path Parameters

meetingId
string
required

Meeting ID

Response

OK

A publicly accessible URL that includes a secure token. Accessing this link will immediately initiate the file download.

Example:

"https://media.meetgeek.ai/api/download?token=jQzYmM1NTAtM2NmMi00MmNhLW"

expires_in
integer

The number of seconds remaining until the download link expires and becomes invalid.

Example:

14400