---
title: "Get Location Reminders"
method: GET
path: "/api/v1/location_reminders"
tags: ["Location reminders"]
---

# Get Location Reminders

`GET /api/v1/location_reminders`

Get all active location reminders.

Optionally filter by `task_id` to return only location reminders for a specific task.

This is a paginated endpoint. See the [Pagination guide](#tag/Pagination)
for details on using cursor-based pagination.

## Query parameters

- `task_id` string, nullable — String ID of the task
- `cursor` string, nullable — An opaque string used as the cursor for pagination. Must be used with the same parameters from the previous request
- `limit` integer — The number of objects to return in a page

## Response `200`

Successful Response

- PaginatedListNotificationLocationSyncView
  - `results` NotificationLocationSyncView[], required — Objects in the current page of results.
    - `id` string, required — String ID of the location reminder
    - `item_id` string, required — String ID of the task
    - `project_id` string, required — String ID of the project containing the task
    - `notify_uid` string, required — String ID of the user who will receive the reminder
    - `name` string, required — Name of the location
    - `loc_lat` string, required — Latitude of the location
    - `loc_long` string, required — Longitude of the location
    - `loc_trigger` 'on_enter' | 'on_leave', required — Trigger type for the location reminder
    - `radius` integer, required — Radius in meters
    - `is_deleted` boolean, required — Whether the location reminder is deleted
    - `type` 'location' — The reminder type
  - `next_cursor` string, nullable, required — Cursor for the next page of results, or `null` when there are no more results.

## 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)
