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

# Fetch Notes

## `GET`Notes

Fetch all notes.

`GET` `/user-api/v1/notes`

### Headers

| Header              | Value               |
| ------------------- | ------------------- |
| `x-rolodex-api-key` | `f1e2d3c4b5a697...` |

### Query Parameters

<ParamField path="limit" type="string">
  Set a limit to the number of records to return (Default:25)
</ParamField>

<ParamField path="offset" type="string">
  Number of records to skip.
</ParamField>

<ParamField path="order_by" type="string">
  Sort order: `updated_at:asc`, `updated_at:desc`, `created_at:asc`, `created_at:desc`
</ParamField>

<ParamField path="include" type="string">
  Related data to include: `contacts`
</ParamField>

### Response

```json theme={null}
{
  "pagination": {
    "limit": 25,
    "offset": 0,
    "total": 250
  },
  "data": [
    {
      "id": "note_12345",
      "body": "Follow up meeting scheduled for next week",
      "created_at": "2025-01-15T10:30:00Z",
      "updated_at": "2025-01-15T10:30:00Z"
    },
    {
      "id": "note_67890",
      "body": "Great conversation about their tech stack",
      "created_at": "2025-01-14T09:15:00Z",
      "updated_at": "2025-01-14T09:15:00Z"
    }
  ]
}
```

### With `Include` Parameters

`GET` `/user-api/v1/notes?include=contacts`

### Response with all includes

```json theme={null}
{
  "pagination": {
    "limit": 25,
    "offset": 0,
    "total": 250
  },
  "data": [
    {
      "id": "note_12345",
      "body": "Follow up meeting scheduled for next week",
      "created_at": "2025-01-15T10:30:00Z",
      "updated_at": "2025-01-15T10:30:00Z",
      "contacts": [
        {
          "id": "contact_123",
          "full_name": "John Doe",
          "image_url": "https://example.com/avatar.jpg"
        }
      ]
    }
  ]
}
```

## `GET` a Note

Fetch one note.

`GET` `/user-api/v1/notes/:id`

## Path Parameters

<ParamField path="id" type="string">
  Note ID
</ParamField>

## Query Parameters

<ParamField path="include" type="string">
  Related data to include: `contacts`
</ParamField>

## Endpoint Example

`GET` `/user-api/v1/notes/note_12345?include=contacts`

### Response

```json theme={null}
{
  "data": {
    "id": "note_12345",
    "body": "Follow up meeting scheduled for next week",
    "created_at": "2025-01-15T10:30:00Z",
    "updated_at": "2025-01-15T10:30:00Z"
  }
}
```
