---
title: "Get Reminder"
method: GET
path: "/api/v1/reminders/{reminder_id}"
tags: ["Reminders"]
---

# Get Reminder

`GET /api/v1/reminders/{reminder_id}`

Return a single reminder by ID.

## Path parameters

- `reminder_id` string, required — String ID of the reminder

## Response `200`

Successful Response

- NotificationSyncView — A class with fields representing a NotificationView which will be returned to clients in a sync (or sync-like) response.
  - `id` string, required — String ID of the reminder.
  - `item_id` string, required — String ID of the task that owns the reminder.
  - `notify_uid` string, required — String ID of the user who receives the reminder.
  - `is_deleted` boolean, required — Whether the reminder is deleted.
  - `is_urgent` boolean, required — Whether the reminder should be delivered urgently.
  - `type` string, required — Reminder type.
  - `minute_offset` integer, nullable, required — Minutes before the task due time for relative reminders.
  - `due` object, nullable, required — Datetime when the reminder fires, or `null` if unset.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found

---

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