GET
/
v1
/
meetings
/
{meetingId}
/
transcript
curl --request GET \
  --url https://api.meetgeek.ai/v1/meetings/{meetingId}/transcript \
  --header 'Authorization: <api-key>'
{
  "pagination": {
    "next_cursor": "gASVSgAAAAAAAABdlCiMGDIwMj==",
    "previous_cursor": "sDAACgCCCBo97zDAsCqcADPUzA=="
  },
  "sentences": [
    {
      "id": 1,
      "speaker": "John Doe",
      "timestamp": "2024-08-08T14:00:34Z",
      "transcript": "Previous quarter was great!"
    }
  ]
}

Authorizations

Authorization
string
header
required

Type "Bearer" followed by a space and a token

Path Parameters

meetingId
string
required

Meeting ID

Query Parameters

limit
integer

Number of records to fetch

Required range: 1 <= x <= 500
cursor
string

Cursor to continue reading from

Response

200
application/json
OK
pagination
object
sentences
object[]