> ## Documentation Index
> Fetch the complete documentation index at: https://docs.openwhispr.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List notes

> List notes with optional folder filtering and cursor pagination.



## OpenAPI

````yaml /openapi.json get /notes/list
openapi: 3.1.0
info:
  title: OpenWhispr API
  version: 1.0.0
  description: Manage notes, folders, transcriptions, and usage programmatically.
servers:
  - url: https://api.openwhispr.com/api/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /notes/list:
    get:
      tags:
        - Notes
      summary: List notes
      description: List notes with optional folder filtering and cursor pagination.
      operationId: listNotes
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 50
          description: Number of notes to return.
        - name: cursor
          in: query
          schema:
            type: string
          description: Pagination cursor from a previous response.
        - name: folder_id
          in: query
          schema:
            type: string
            format: uuid
          description: Filter by folder ID.
      responses:
        '200':
          description: Paginated list of notes.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Note'
                  has_more:
                    type: boolean
                  next_cursor:
                    type: string
                    nullable: true
        '401':
          description: Invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Rate limit exceeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Note:
      type: object
      properties:
        id:
          type: string
          format: uuid
        user_id:
          type: string
        client_note_id:
          type: string
          nullable: true
        title:
          type: string
          nullable: true
        content:
          type: string
        enhanced_content:
          type: string
          nullable: true
        note_type:
          type: string
          enum:
            - personal
            - meeting
            - upload
        folder_id:
          type: string
          format: uuid
          nullable: true
        participants:
          type: string
          nullable: true
          description: >-
            JSON-serialized list of meeting participants (read-only; populated
            by the desktop sync layer for meeting notes).
        calendar_event_id:
          type: string
          nullable: true
          description: >-
            Linked calendar event ID (read-only; populated by the desktop sync
            layer when a recording is started from a calendar event).
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
          required:
            - code
            - message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key starting with owk_live_

````