Granola Notes API

The Notes API from Granola — 2 operation(s) for notes.

Operations 2

GET /notes List notes #
GET /notes/{id} Retrieve a note #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/granola-notes-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

granola-notes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Granola Public Notes API
  description: Best-effort OpenAPI 3.1 for Granola's Public API (Business and Enterprise plans). Provides read access to AI-summarized meeting notes and their transcripts. Authentication uses bearer API keys (`grn_...`). Rate limits are 25 requests per 5 seconds burst, 5 requests/second sustained.
  version: v1
servers:
- url: https://public-api.granola.ai/v1
security:
- bearerAuth: []
tags:
- name: Notes
paths:
  /notes:
    get:
      tags:
      - Notes
      summary: List notes
      description: List notes accessible to the API key. Only returns notes that have a generated AI summary and transcript. Use `cursor` for pagination.
      operationId: listNotes
      parameters:
      - in: query
        name: cursor
        schema:
          type: string
        description: Pagination cursor
      - in: query
        name: limit
        schema:
          type: integer
          default: 25
          maximum: 100
      - in: query
        name: createdAfter
        schema:
          type: string
          format: date-time
      - in: query
        name: createdBefore
        schema:
          type: string
          format: date-time
      responses:
        '200':
          description: A page of notes
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Note'
                  cursor:
                    type: string
                    nullable: true
                  hasMore:
                    type: boolean
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/RateLimited'
  /notes/{id}:
    get:
      tags:
      - Notes
      summary: Retrieve a note
      description: Retrieve a single note, optionally including the full transcript via `include=transcript`. Returns 404 if the note is still processing or does not have an AI summary.
      operationId: getNote
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
      - in: query
        name: include
        schema:
          type: string
          enum:
          - transcript
      responses:
        '200':
          description: Note
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Note'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          description: Not found or not yet summarized
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  responses:
    Unauthorized:
      description: Missing or invalid API key
    RateLimited:
      description: Rate limit exceeded
  schemas:
    Note:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
        summary:
          type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
        meetingStartAt:
          type: string
          format: date-time
        meetingEndAt:
          type: string
          format: date-time
        scope:
          type: string
          enum:
          - personal
          - public
        attendees:
          type: array
          items:
            type: object
            properties:
              name:
                type: string
              email:
                type: string
                format: email
        transcript:
          type: array
          description: Present only when include=transcript is specified
          items:
            type: object
            properties:
              speaker:
                type: string
              startMs:
                type: integer
              endMs:
                type: integer
              text:
                type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key (grn_...)