Granola
Access meeting notes and transcripts from Granola
Integrate Granola into your workflow to retrieve meeting notes, summaries, attendees, and transcripts.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | No description |
createdBefore | string | No | No description |
createdAfter | string | No | No description |
updatedAfter | string | No | No description |
cursor | string | No | No description |
pageSize | number | No | No description |
| Parameter | Type | Description |
|---|
notes | json | List of meeting notes |
↳ id | string | Note ID |
↳ title | string | Note title |
↳ ownerName | string | Note owner name |
↳ ownerEmail | string | Note owner email |
↳ createdAt | string | Creation timestamp |
↳ updatedAt | string | Last update timestamp |
hasMore | boolean | Whether more notes are available |
cursor | string | Pagination cursor for the next page |
Retrieves a specific meeting note from Granola by ID, including summary, attendees, calendar event details, and optionally the transcript.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | No description |
noteId | string | Yes | No description |
includeTranscript | string | No | No description |
| Parameter | Type | Description |
|---|
id | string | Note ID |
title | string | Note title |
ownerName | string | Note owner name |
ownerEmail | string | Note owner email |
createdAt | string | Creation timestamp |
updatedAt | string | Last update timestamp |
summaryText | string | Plain text summary of the meeting |
summaryMarkdown | string | Markdown-formatted summary of the meeting |
attendees | json | Meeting attendees |
↳ name | string | Attendee name |
↳ email | string | Attendee email |
folders | json | Folders the note belongs to |
↳ id | string | Folder ID |
↳ name | string | Folder name |
calendarEventTitle | string | Calendar event title |
calendarOrganiser | string | Calendar event organiser email |
calendarEventId | string | Calendar event ID |
scheduledStartTime | string | Scheduled start time |
scheduledEndTime | string | Scheduled end time |
invitees | json | Calendar event invitee emails |
transcript | json | Meeting transcript entries (only if requested) |
↳ speaker | string | Speaker source (microphone or speaker) |
↳ text | string | Transcript text |
↳ startTime | string | Segment start time |
↳ endTime | string | Segment end time |