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

# Get Lead Notes

> Retrieve all notes associated with a specific lead

## Authentication

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://app.journeybee.io/api/v1/leads/{leadId}/notes" \
    -H "Authorization: Bearer your-api-key-uuid" \
    -H "Content-Type: application/json"
  ```
</CodeGroup>

## Path Parameters

<ParamField path="leadId" type="number" required>
  The unique identifier of the lead
</ParamField>

## Response Schema

<ResponseField name="notes" type="array">
  Array of note objects

  <Expandable title="Note Object">
    <ResponseField name="id" type="number">Note ID</ResponseField>
    <ResponseField name="content" type="object">Rich text document content</ResponseField>
    <ResponseField name="created_at" type="string">Creation timestamp</ResponseField>
    <ResponseField name="updated_at" type="string">Last update timestamp</ResponseField>
    <ResponseField name="created_by" type="object">User who created the note</ResponseField>
    <ResponseField name="attachments" type="array">Array of file attachments</ResponseField>
    <ResponseField name="mentions" type="array">Array of user mentions</ResponseField>
  </Expandable>
</ResponseField>

## Example Response

<ResponseExample>
  ```json 200 OK theme={null}
  [
    {
      "id": 123,
      "content": {
        "type": "doc",
        "content": [
          {
            "type": "paragraph", 
            "content": [{"type": "text", "text": "Initial contact made with lead"}]
          }
        ]
      },
      "created_at": "2024-01-15T10:30:00Z",
      "created_by": {
        "id": 456,
        "first_name": "John",
        "last_name": "Doe"
      }
    }
  ]
  ```
</ResponseExample>

## Notes

* Requires API key with `read_access` permission
* Returns rich text documents with formatting and attachments
* Includes user mentions and notification history
