Google Tasks Users API

The Users API from Google Tasks — 2 operation(s) for users.

Operations 6

GET /users/@me/lists List task lists #
POST /users/@me/lists Create a task list #
GET /users/@me/lists/{taskListId} Get a task list #
PUT /users/@me/lists/{taskListId} Update a task list #
PATCH /users/@me/lists/{taskListId} Patch a task list #
DELETE /users/@me/lists/{taskListId} Delete a task list #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/google-tasks-users-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

google-tasks-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Google Tasks Lists Users API
  description: The Google Tasks API lets you search, read, and update Google Tasks content and metadata. You can manage task lists and individual tasks, including creating, updating, moving, and deleting tasks programmatically.
  version: v1
  contact:
    name: Google
    url: https://developers.google.com/tasks
servers:
- url: https://tasks.googleapis.com/tasks/v1
security:
- oauth2: []
tags:
- name: Users
paths:
  /users/@me/lists:
    get:
      operationId: listTaskLists
      summary: List task lists
      description: Returns all the authenticated user's task lists.
      parameters:
      - name: maxResults
        in: query
        schema:
          type: integer
          maximum: 100
      - name: pageToken
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskListsResponse'
      tags:
      - Users
    post:
      operationId: insertTaskList
      summary: Create a task list
      description: Creates a new task list.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TaskList'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskList'
      tags:
      - Users
  /users/@me/lists/{taskListId}:
    get:
      operationId: getTaskList
      summary: Get a task list
      description: Returns the authenticated user's specified task list.
      parameters:
      - name: taskListId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskList'
      tags:
      - Users
    put:
      operationId: updateTaskList
      summary: Update a task list
      description: Updates the authenticated user's specified task list.
      parameters:
      - name: taskListId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TaskList'
      responses:
        '200':
          description: Successful response
      tags:
      - Users
    patch:
      operationId: patchTaskList
      summary: Patch a task list
      description: Updates the authenticated user's specified task list with patch semantics.
      parameters:
      - name: taskListId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TaskList'
      responses:
        '200':
          description: Successful response
      tags:
      - Users
    delete:
      operationId: deleteTaskList
      summary: Delete a task list
      description: Deletes the authenticated user's specified task list.
      parameters:
      - name: taskListId
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Successful deletion
      tags:
      - Users
components:
  schemas:
    TaskListsResponse:
      type: object
      properties:
        kind:
          type: string
        etag:
          type: string
        nextPageToken:
          type: string
        items:
          type: array
          items:
            $ref: '#/components/schemas/TaskList'
    TaskList:
      type: object
      properties:
        kind:
          type: string
          const: tasks#taskList
        id:
          type: string
        etag:
          type: string
        title:
          type: string
        updated:
          type: string
          format: date-time
        selfLink:
          type: string
          format: uri
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://accounts.google.com/o/oauth2/auth
          tokenUrl: https://oauth2.googleapis.com/token
          scopes:
            https://www.googleapis.com/auth/tasks: Create, edit, organize, and delete all your tasks
            https://www.googleapis.com/auth/tasks.readonly: View your tasks