Get a specific reminder
GET
/reminders/{id}
const url = 'http://localhost:8000/api/v1/reminders/1';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:8000/api/v1/reminders/1 \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
integer
Responses
Section titled “ Responses ”Successful operation
Media type application/json
object
id
integer
title
string
description
string
type
string
trigger_at
string format: date-time
due_at
string format: date-time
repeat_rule
string
timezone
string
status
string
priority
integer
snoozed_until
string format: date-time
last_triggered_at
string format: date-time
next_trigger_at
string format: date-time
metadata
object
Example
{ "type": "daily_tracking", "repeat_rule": "FREQ=DAILY;BYHOUR=20;BYMINUTE=0", "timezone": "UTC", "status": "active"}Reminder not found