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

# Fetches all account notes by account ID or by note ID



## OpenAPI

````yaml get /v1/accounts/notes
openapi: 3.0.0
info:
  title: Thena Platform
  description: The Thena Platform API description
  version: 1.0.0
  contact: {}
servers:
  - url: https://platform.thena.ai
    description: Platform
  - url: http://localhost:8000
    description: Local
security:
  - ApiKey: []
tags: []
paths:
  /v1/accounts/notes:
    get:
      tags:
        - Accounts
      summary: Get account notes
      parameters:
        - name: accountId
          required: false
          in: query
          description: The identifier of the account to find notes for
          schema:
            example: A123
            type: string
        - name: type
          required: false
          in: query
          description: The identifier / value of the type attribute of the note
          schema:
            example: T123
            type: string
        - name: page
          required: false
          in: query
          description: The page number
          schema:
            type: number
        - name: limit
          required: false
          in: query
          description: The limit number of notes to fetch
          schema:
            type: number
      responses:
        '200':
          description: Operation successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountNotePaginatedResponseDto'
        '404':
          description: Account not found
          content:
            application/json:
              example:
                statusCode: 404
                message: Account not found
                error: Not Found
        '500':
          description: Internal server error
          content:
            application/json:
              example:
                statusCode: 500
                message: Something went wrong!
                error: Internal Server Error
components:
  schemas:
    AccountNotePaginatedResponseDto:
      type: object
      properties: {}
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Enter your API key '

````