---
title: "List reminders"
method: GET
path: "/v1/reminders/"
tags: ["reminders"]
---

# List reminders

`GET /v1/reminders/`

Retrieve all reminders for the authenticated user. Supports filtering by contact, date range, and completion status.

## Query parameters

- `take` integer
- `skip` integer
- `cursor` string, uuid
- `where` object
  - `in` string[]
  - `not_in` string[]
  - `is_complete` boolean
  - `is_overdue` boolean
  - `has_contacts` union
    - object
      - `not` union, required
        - string, uuid
        - string[]
    - boolean
    - string, uuid
    - string[]
  - `has_created_at` object
    - `gte` string, date-time
    - `lte` string, date-time
- `orderBy` unknown
- `include` object
  - `recurrence` boolean
  - `contacts` boolean
- `select` object
  - `recurrence` boolean
  - `contacts` boolean

## Response `200`

Successful response

- object
  - `error` boolean, required
  - `data` object, required
    - `items` object[], required
      - `id` string, uuid, required
      - `user_id` string
      - `text` string, nullable
      - `due_at_date` union
        - string, date-time
        - unknown
      - `due_at_time` union
        - string, date-time
        - unknown
        - string
      - `is_complete` boolean
      - `email_sent` boolean
      - `push_notification_sent` boolean
      - `recurrence` string, nullable
      - `last_completed_at` union
        - string, date-time
        - unknown
      - `next_occurrence_at` union
        - string, date-time
        - unknown
      - `created_at` union
        - string, date-time
        - unknown
      - `is_overdue` boolean
      - `next_cursor` string
      - `reminders_contacts` object[]
      - `users` object, nullable
    - `nextCursor` string, nullable

## Other responses

- `400` — Request body failed validation.
- `401` — Missing or invalid API key.
- `403` — Valid key, insufficient permission.
- `404` — Resource does not exist.
- `429` — Rate limit exceeded.
- `500` — Unexpected server error.

---

[API](https://skmtc.net/getdex/apis/dex-public-api.md) · [All operations](https://skmtc.net/getdex/apis/dex-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/getdex/dex-public-api/versions/6f01cd52ac12/schema)
