Skip to main content
GET
/
v1
/
dev
/
user
/
action-items
List action items
curl --request GET \
  --url https://api.omi.me/v1/dev/user/action-items \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "action_101",
    "description": "Review budget proposal",
    "completed": false,
    "created_at": "2025-01-20T10:15:00Z",
    "updated_at": "2025-01-20T10:15:00Z",
    "due_at": null,
    "completed_at": null,
    "conversation_id": "conv_202"
  }
]

Authorizations

Authorization
string
header
required

Developer API key. Get one from Settings → Developer → Create Key in the Omi app. Keys are prefixed with omi_dev_.

Query Parameters

limit
integer
default:100

Maximum number of items to return.

offset
integer
default:0

Number of items to skip.

completed
boolean

Filter by completion status.

conversation_id
string

Filter by associated conversation ID.

start_date
string<date-time>

Filter by creation start date (inclusive).

end_date
string<date-time>

Filter by creation end date (inclusive).

Response

List of action items.

id
string

Unique identifier.

description
string

The action item text.

completed
boolean

Whether completed.

created_at
string<date-time>
updated_at
string<date-time>
due_at
string<date-time> | null

Due date (null if not set).

completed_at
string<date-time> | null

When completed (null if pending).

conversation_id
string | null

Associated conversation ID.