> ## 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 dictionary words

> List your custom dictionary entries with cursor pagination. Requires dictionary:read on a personal key (owk_live_). Workspace keys (ow_wks_live_) get 403.



## OpenAPI

````yaml /openapi.json get /dictionary/list
openapi: 3.1.0
info:
  title: OpenWhispr API
  version: 1.0.0
  description: >-
    Manage notes, folders, transcriptions, dictionary words, snippets, and usage
    programmatically, and transcribe audio files (beta).
servers:
  - url: https://api.openwhispr.com/api/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /dictionary/list:
    get:
      tags:
        - Dictionary
      summary: List dictionary words
      description: >-
        List your custom dictionary entries with cursor pagination. Requires
        dictionary:read on a personal key (owk_live_). Workspace keys
        (ow_wks_live_) get 403.
      operationId: listDictionary
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 500
            default: 200
          description: Number of entries to return.
        - name: cursor
          in: query
          schema:
            type: string
          description: Pagination cursor from a previous response.
      responses:
        '200':
          description: Paginated list of dictionary entries.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/DictionaryEntry'
                  has_more:
                    type: boolean
                  next_cursor:
                    type:
                      - string
                      - 'null'
        '401':
          description: Invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Missing dictionary:read, or a workspace key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Rate limit exceeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    DictionaryEntry:
      type: object
      properties:
        id:
          type: string
        word:
          type: string
        source:
          type: string
          enum:
            - manual
            - learned
          description: >-
            `manual` for words you added; `learned` for words added
            automatically by auto-learn from corrections.
        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_ (personal) or ow_wks_live_ (workspace —
        see space_id on the Notes/Folders endpoints below)

````