GET
/
v1
/
meetings
/
{meetingId}
curl --request GET \
  --url https://api.meetgeek.ai/v1/meetings/{meetingId} \
  --header 'Authorization: <api-key>'
{
  "host_email": "[email protected]",
  "language": "en-US",
  "meeting_id": "7e0f1953-b2ce-45b8-97b2-03c09da3a602",
  "participant_emails": [
    "[email protected]",
    "[email protected]"
  ],
  "source": "google",
  "timestamp_end_utc": "2024-08-08T14:00:34Z",
  "timestamp_start_utc": "2024-08-08T13:00:38Z",
  "timezone": "Europe/Paris",
  "title": "All-hands Meeting"
}

Authorizations

Authorization
string
header
required

Type "Bearer" followed by a space and a token

Path Parameters

meetingId
string
required

Meeting ID

Response

200
application/json
OK
host_email
string
language
string
Example:

"en-US"

meeting_id
string
Example:

"7e0f1953-b2ce-45b8-97b2-03c09da3a602"

participant_emails
string[]
source
string
Example:

"google"

timestamp_end_utc
string
Example:

"2024-08-08T14:00:34Z"

timestamp_start_utc
string
Example:

"2024-08-08T13:00:38Z"

timezone
string
Example:

"Europe/Paris"

title
string
Example:

"All-hands Meeting"