---
title: "Fetch Private Notes"
method: GET
path: "/notes"
tags: ["note"]
---

# Fetch Private Notes

`GET /notes`

This endpoint retrieves a paginated list of all private notes across chats (in descending order of timestamp). 

#### Response

The response is an array of JSON note objects. Refer to [the note object here](/api-reference/objects/the-note-object)

## Query parameters

- `offset` number — - The offset value for paginating the results - Default `0`
- `limit` number — - The maximum number of notes to retrieve - Default `500`
- `start_time` string — - Filter for all notes from the start_time timestamp onwards
- `end_time` string — - Filter for all notes up to the end_time timestamp

## Headers

- `x-phone` string

## Response `200`

Note

- object
  - `from` number — The starting index of the notes returned
  - `to` number — The ending index of the notes returned
  - `start_time` string — The start_time of the notes returned. The format should be YYYY-MM-DDTHH:MM:SSZ
  - `end_time` string — The end_time of the notes returned. The format should be YYYY-MM-DDTHH:MM:SSZ
  - `count` number — The total number of notes returned
  - `notes` unknown[] — An array of note objects. Refer to [the note object here](/api-reference/objects/the-note-object)
    - unknown

---

[API](https://skmtc.net/periskope/apis/api-local.md) · [All operations](https://skmtc.net/periskope/apis/api-local/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/periskope/api-local/revisions/f2738ced87d8/schema)
