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

# Get a note



## OpenAPI

````yaml /openapi.json get /notes/{id}
openapi: 3.1.0
info:
  title: Cura API
  version: 1.0.0
  description: >-
    Public, read-only access to a workspace's portfolio. Authenticate every
    request with your `cura_…` API key as a bearer token.
servers:
  - url: https://api.cura.inc
    description: Production
security:
  - ApiKey: []
paths:
  /notes/{id}:
    get:
      tags:
        - Notes
      summary: Get a note
      operationId: getNote
      parameters:
        - in: path
          name: id
          schema:
            type: string
            format: uuid
            pattern: >-
              ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
            description: Note id.
          required: true
          description: Note id.
      responses:
        '200':
          description: The note.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/Note'
                required:
                  - data
                additionalProperties: false
        '400':
          description: Invalid note id.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Note not found in this workspace.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Note:
      type: object
      properties:
        id:
          type: string
          description: The note's unique id.
        attributes:
          type: object
          properties:
            company_id:
              type: string
              description: Id of the portfolio company this note belongs to.
            title:
              type: string
              description: Note title.
            content:
              anyOf:
                - type: string
                - type: 'null'
              description: Note body content, if any.
            source:
              anyOf:
                - type: string
                - type: 'null'
              description: >-
                Import source (e.g. attio, affinity); null for notes created in
                Cura.
            created_by:
              anyOf:
                - type: string
                - type: 'null'
              description: User id of the author, when known.
            created_at:
              type: string
              description: When the note was written (ISO 8601 timestamp).
          required:
            - company_id
            - title
            - content
            - source
            - created_by
            - created_at
          additionalProperties: false
      required:
        - id
        - attributes
      additionalProperties: false
      description: A note on a portfolio company.
    Error:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message.
      required:
        - error
      additionalProperties: false
      description: An error response.
  securitySchemes:
    ApiKey:
      type: http
      scheme: bearer
      description: >-
        Your workspace API key (`cura_…`), sent as `Authorization: Bearer
        <key>`.

````