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

# Get a Note

> Retrieve a single note by its identifier, including its content, author, and the event it is attached to.



## OpenAPI

````yaml GET /notes/{id}
openapi: 3.0.0
info:
  title: Zeeg Public API
  description: >-
    Zeeg public API documentation.


    ## Authentication

    All endpoints require a Bearer token. You can generate an API token from
    [your Zeeg dashboard](https://app.zeeg.me/account/settings/api-access).


    Each token is scoped to specific permissions (e.g. `events:read`,
    `webhooks:write`). Make sure your token has the required scopes for the
    endpoints you want to use.


    ## Recommended Headers

    We recommend including the `Accept: application/json` header in all API
    requests to ensure you receive JSON responses.
  version: 2.0.0
  x-logo:
    url: https://app.zeeg.me/img/logo-dark.2ca83593.svg
    backgroundColor: '#f7f7f9'
    altText: zeeg
  contact:
    name: Zeeg Support
    email: support@zeeg.me
    url: https://zeeg.me/en/contact
  license:
    name: Proprietary
    url: https://zeeg.me/en/legal/terms
  termsOfService: https://zeeg.me/en/legal/terms
servers:
  - url: https://api.zeeg.me/v2
    description: Production
security:
  - bearer: []
tags:
  - name: Scheduled Events
    description: Management of events scheduled via Zeeg
  - name: Scheduling Pages
    description: Scheduling pages information and management
  - name: Availability Schedule
    description: Read and change availability for users
  - name: Webhooks
    description: Webhooks management
  - name: Notes
    description: Notes for scheduled events
  - name: Workspaces & Teams
    description: Workspace users and team member management
  - name: AI Agent
    description: AI Agent integration endpoints
  - name: Payloads
    description: Webhook payload schemas
  - name: CRM - Objects
    description: >-
      Discover the schema of CRM objects (standard and custom) including all
      attribute definitions
  - name: CRM - Companies
    description: Create, read, update, and delete CRM company records
  - name: CRM - People
    description: Create, read, update, and delete CRM person records
paths:
  /notes/{id}:
    get:
      tags:
        - Notes
      summary: Get a note
      description: Returns a single note by its UUID or integer ID.
      operationId: get-notes-id
      parameters:
        - schema:
            type: string
          in: path
          name: id
          required: true
          description: The UUID or integer ID of the note.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  status:
                    type: integer
                    example: 200
                  data:
                    type: object
                    properties:
                      id:
                        type: integer
                      uuid:
                        type: string
                        format: uuid
                        description: Short alphanumeric identifier
                        example: 2lZb5IpExv
                      note:
                        type: string
                      eventUuid:
                        type: string
                        format: zeeg-id
                        description: Zeeg event identifier
                        example: zg-R69bc06d3ac712
                      crmRecords:
                        type: array
                        nullable: true
                        items:
                          type: object
                      event:
                        type: object
                        properties:
                          UUID:
                            type: string
                            format: zeeg-id
                            description: Zeeg event identifier
                            example: zg-R69bc06d3ac712
                          startAt:
                            type: string
                            format: date-time
                          endAt:
                            type: string
                            format: date-time
                          title:
                            type: string
                          duration:
                            type: integer
                          eventType:
                            type: object
                            properties:
                              title:
                                type: string
                              slug:
                                type: string
                              id:
                                type: string
                                format: uuid
                                example: 2446a9f6-32e5-4678-a5fc-e978aafe6dfc
                      creator:
                        type: object
                        properties:
                          firstName:
                            type: string
                          lastName:
                            type: string
                          slug:
                            type: string
                          avatar:
                            type: string
                            nullable: true
                      updatedAt:
                        type: string
                        format: date-time
                        description: Timestamp of last update
                      createdAt:
                        type: string
                        format: date-time
                        description: Timestamp of creation
              examples:
                Note found:
                  value:
                    success: true
                    status: 200
                    data:
                      id: 42
                      uuid: vIgm8IvNzD
                      note: >-
                        <p>Sophie prefers afternoon slots. Follow up about
                        enterprise plan.</p>
                      eventUuid: zg-O69bac566950c6
                      crmRecords: null
                      event:
                        UUID: zg-O69bac566950c6
                        startAt: '2026-04-15T14:00:00.000000Z'
                        endAt: '2026-04-15T14:30:00.000000Z'
                        title: 30-Minute Discovery Call
                        duration: 30
                        eventType:
                          title: 30-Minute Discovery Call
                          slug: 30-minute-discovery-call
                      creator:
                        firstName: Lena
                        lastName: Meier
                        slug: lena-meier
                        avatar: null
                      updatedAt: '2026-04-15T10:32:00.000000Z'
                      createdAt: '2026-04-15T10:32:00.000000Z'
        '401':
          $ref: '#/components/responses/401'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
              examples:
                Not found:
                  value:
                    error: Entry for Note not found
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  message:
                    type: string
                  status:
                    type: integer
              examples:
                Note not found:
                  value:
                    success: false
                    message: Note not found
                    status: 500
      security:
        - bearer: []
components:
  responses:
    '401':
      description: Unauthorized
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                example: Unauthenticated.
          examples:
            Unauthenticated:
              value:
                message: Unauthenticated.
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      description: ''

````