---
title: "Get a reminder (v2)"
method: GET
path: "/v2/reminders/{reminderId}"
tags: ["reminders"]
---

# Get a reminder (v2)

`GET /v2/reminders/{reminderId}`

Retrieve a single reminder by its unique ID. Returns the canonical /v2 envelope `{ data: { reminder } }` — see Migration notes below.

## Path parameters

- `reminderId` string, uuid, required

## Query parameters

- `include` object
  - `recurrence` boolean
  - `contacts` boolean
- `select` object
  - `recurrence` boolean
  - `contacts` boolean

## Response `200`

Successful response

- object
  - `data` object, required
    - `reminder` 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

## Other responses

- `400` — Request body failed validation.
- `401` — Missing or invalid API key.
- `403` — Valid key, insufficient permission.
- `404` — Resource does not exist.
- `409` — Request body failed validation.
- `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)
