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

# Get note

> Get a specific note by its public ID, including creator and parent company.



## OpenAPI

````yaml /openapi.yaml get /notes/{notePublicId}
openapi: 3.1.0
info:
  title: Concrete API
  description: >
    The Concrete API provides programmatic access to view and create select data
    in Concrete.  The API is primarily intended to facilitate data pipeline
    automations for portfolio management.
  version: 1.0.0
  license:
    name: MIT
  contact:
    name: Concrete Support
    email: support@concretehq.com
    url: https://concretehq.com
servers:
  - url: https://app.concretehq.com/api/v1
    description: Production server
security:
  - bearerAuth: []
tags:
  - name: Authentication
    description: Authentication and member information
  - name: Companies
    description: Portfolio company management
  - name: Funds
    description: Fund and portfolio management
  - name: Meetings
    description: External meeting imports
  - name: Notes
    description: Notes attached to companies and people
  - name: Connections
    description: Data connections and message uploads
  - name: Trackers
    description: Tracked metrics and their per-company value history
paths:
  /notes/{notePublicId}:
    get:
      tags:
        - Notes
      summary: Get note
      description: >-
        Get a specific note by its public ID, including creator and parent
        company.
      operationId: getNote
      parameters:
        - name: notePublicId
          in: path
          description: Note public ID
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Note details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NoteWithCreator'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    NoteWithCreator:
      allOf:
        - $ref: '#/components/schemas/Note'
        - type: object
          required:
            - creator
          properties:
            creator:
              $ref: '#/components/schemas/Member'
            companyName:
              type: string
              description: Name of the company the note is attached to (if any)
              example: Acme
            companyPublicId:
              type: string
              description: Public ID of the company the note is attached to (if any)
              example: abc123def456
    Note:
      type: object
      description: A note attached to a company or person.
      required:
        - publicId
        - content
        - occurredAt
        - topics
      properties:
        publicId:
          type: string
          description: Note public ID
          example: abc123def456
        content:
          type: string
          description: Note content in Markdown. Rendered as rich text in the Concrete app.
          example: Met with the founder; discussed **Q4 hiring plan**.
        occurredAt:
          type: string
          format: date-time
          description: When the note's subject matter occurred (ISO 8601)
          example: '2026-04-15T14:00:00Z'
        topics:
          type: array
          nullable: true
          description: Topics categorizing the note's subject matter
          items:
            $ref: '#/components/schemas/NoteTopic'
          example:
            - board-meeting
    Member:
      type: object
      required:
        - publicId
        - role
        - user
      properties:
        publicId:
          type: string
          description: Member public ID
          example: abc123def456
        role:
          type: string
          description: Member role in the workspace
          example: admin
        user:
          $ref: '#/components/schemas/User'
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Human-readable error message
          example: Not found
    NoteTopic:
      type: string
      description: Categorization for a note's subject matter.
      enum:
        - periodic-company-update
        - company-announcement
        - board-meeting
        - adhoc-company-update
        - legal-communication
        - other
    User:
      type: object
      required:
        - publicId
        - email
        - firstName
        - lastName
      properties:
        publicId:
          type: string
          description: User public ID
          example: 654fed321cba
        email:
          type: string
          format: email
          description: User email address
          example: john@example.com
        firstName:
          type: string
          description: User first name
          example: John
        lastName:
          type: string
          description: User last name
          example: Doe
  responses:
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key authentication using Bearer token format

````