> ## 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 company's notes

> Notes for a single company, newest first.



## OpenAPI

````yaml /openapi.json get /portfolio/{id}/notes
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:
  /portfolio/{id}/notes:
    get:
      tags:
        - Portfolio
        - Notes
      summary: Get a company's notes
      description: Notes for a single company, newest first.
      operationId: getPortfolioCompanyNotes
      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: Portfolio company id.
          required: true
          description: Portfolio company id.
        - in: query
          name: limit
          schema:
            default: 50
            description: Max notes to return (1–100).
            example: 50
            type: integer
            minimum: 1
            maximum: 100
          description: Max notes to return (1–100).
        - in: query
          name: offset
          schema:
            default: 0
            description: Number of notes to skip.
            example: 0
            type: integer
            minimum: 0
            maximum: 9007199254740991
          description: Number of notes to skip.
      responses:
        '200':
          description: A page of notes.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Note'
                  pagination:
                    $ref: '#/components/schemas/OffsetPagination'
                required:
                  - data
                  - pagination
                additionalProperties: false
        '400':
          description: Invalid query parameters.
          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: Company not found in this workspace's portfolio.
          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.
    OffsetPagination:
      type: object
      properties:
        limit:
          type: number
          description: The limit that was applied.
          example: 50
        offset:
          type: number
          description: The offset that was applied.
          example: 0
        hasMore:
          type: boolean
          description: True if more results exist past this page.
          example: true
      required:
        - limit
        - offset
        - hasMore
      additionalProperties: false
      description: Offset-based pagination metadata.
    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>`.

````