WebCull
cli

Reminders

Create, list, and cancel bookmark reminders from the CLI.

Schedule Reminders For Specific Bookmarks

Reminder commands attach a pending reminder to a bookmark. They support create, list, and cancel. Use the app for reminder edits, recurring reminders, or bulk reminder changes.

Create One Bookmark Reminder

webcull reminders create --bookmark-id 2302 --in 3h --note "Check if the pricing page changed."
{
  "success": "true",
  "action": "create",
  "id": 789,
  "bookmark_id": 2302,
  "remind_at": "2026-06-14 18:00:00",
  "note_status": "stored"
}

Review Or Cancel Pending Reminders

webcull reminders list --bookmark-id 2302 --fields id,bookmark_id,remind_at,status,note_status
webcull reminders cancel 789 --dry-run
{
  "success": "true",
  "items": [
    {
      "id": 789,
      "bookmark_id": 2302,
      "remind_at": "2026-06-14 18:00:00",
      "status": "pending",
      "note_status": "stored"
    }
  ]
}

Reminder notes follow the same privacy boundary as bookmark text. For E2EE accounts, notes are encrypted locally before they are sent to WebCull.

Next step cli Output And Limits Control response size, field selection, paging, and output format.