latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-167449145.8 KB

6965ecf3ab92

Todo

Get todo item

Returns all todo items belonging to the current user.

get/v1/todos

Query parameters

page_sizeinteger

Maximum number of items to return.

page_tokenstring

Opaque continuation token from a previous page_info.next_page_token.

completedboolean

Completion status of the items.

Response

OK

Example response

{
  "items": [
    {
      "id": "9bsv0s46s6s002p9ltq0",
      "title": "Do something great",
      "description": "I'll make the world a better place today.",
      "priority": "urgent"
    }
  ]
}