Reclaim.ai todoist API

The todoist API from Reclaim.ai — 6 operation(s) for todoist.

Operations 7

GET /api/todoist/integrations #
GET /api/todoist/integrations/details #
PATCH /api/todoist/integrations/settings/{id} #
DELETE /api/todoist/integrations/{id} #
PATCH /api/todoist/integrations/{id} #
POST /api/todoist/sync Initiate a Todoist sync job. #
GET /web/todoist/task/{itemId} #

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/reclaim-ai-todoist-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

reclaim-ai-todoist-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reclaim account-time-schemes Todoist API
  description: Reclaim's awesome API
  contact:
    name: Reclaim.ai Inc.
    url: http://reclaim.ai
    email: info@reclaim.ai
  license:
    name: Reclaim 9.9
    url: http://reclaim.ai
  version: '0.1'
servers:
- url: https://api.app.reclaim.ai
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: todoist
paths:
  /api/todoist/integrations:
    get:
      tags:
      - todoist
      operationId: integrations_6
      responses:
        '200':
          description: integrations_6 200 response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TodoistIntegration'
      deprecated: true
      security:
      - Authorization: []
  /api/todoist/integrations/details:
    get:
      tags:
      - todoist
      operationId: integrationsDetails
      responses:
        '200':
          description: integrationsDetails 200 response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TodoistIntegrationDetails'
      security:
      - Authorization: []
  /api/todoist/integrations/settings/{id}:
    patch:
      tags:
      - todoist
      operationId: patchIntegrationSettings
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TodoistIntegrationPatch'
        required: true
      responses:
        '200':
          description: patchIntegrationSettings 200 response
          content:
            application/json:
              schema:
                type: object
      security:
      - Authorization: []
  /api/todoist/integrations/{id}:
    delete:
      tags:
      - todoist
      operationId: deleteIntegration_4
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: deleteIntegration_4 200 response
          content:
            application/json:
              schema:
                type: object
      security:
      - Authorization: []
    patch:
      tags:
      - todoist
      operationId: patchIntegration_4
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TodoistIntegrationPatch'
        required: true
      responses:
        '200':
          description: patchIntegration_4 200 response
          content:
            application/json:
              schema:
                type: object
      deprecated: true
      security:
      - Authorization: []
  /api/todoist/sync:
    post:
      tags:
      - todoist
      summary: Initiate a Todoist sync job.
      description: Initiate a Todoist sync job. Used by support (hence the private tag) for customers when debugging issues.
      operationId: syncTasks
      responses:
        '200':
          description: syncTasks 200 response
      security:
      - Authorization: []
  /web/todoist/task/{itemId}:
    get:
      tags:
      - todoist
      operationId: taskDetails_4
      parameters:
      - name: itemId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: taskDetails_4 200 response
          content:
            application/json:
              schema:
                type: object
components:
  schemas:
    TodoistSettings_3:
      type: object
      properties:
        titleFormat:
          $ref: '#/components/schemas/TodoistTitleFormat'
        withTitleFormat:
          $ref: '#/components/schemas/TodoistTitleFormat'
        equals: {}
        hashCode:
          type: integer
          format: int32
        toString:
          type: string
    ImmutableSet_TodoistLabel_:
      type: object
      allOf:
      - $ref: '#/components/schemas/ImmutableCollection_TodoistLabel_'
      - $ref: '#/components/schemas/AbstractCollection_TodoistLabel_'
      - properties:
          empty:
            type: boolean
          hashCodeFast:
            type: boolean
    TodoistSettings_4:
      type: object
      properties:
        titleFormat:
          $ref: '#/components/schemas/TodoistTitleFormat'
        withTitleFormat:
          $ref: '#/components/schemas/TodoistTitleFormat'
        equals: {}
        hashCode:
          type: integer
          format: int32
        toString:
          type: string
    TodoistIntegrationPatch:
      type: object
      properties:
        requiresLabel:
          type:
          - boolean
          - 'null'
        selectedProjectIds:
          type:
          - array
          - 'null'
          items:
            type: string
        settings:
          allOf:
          - $ref: '#/components/schemas/TodoistSettings_3'
        withRequiresLabel:
          type: boolean
        withSelectedProjectIds:
          type:
          - array
          - 'null'
          items:
            type: string
        withSettings:
          allOf:
          - $ref: '#/components/schemas/TodoistSettings_4'
        equals: {}
        hashCode:
          type: integer
          format: int32
        toString:
          type: string
    TodoistLabel:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        withId:
          type: string
        withName:
          type: string
        equals: {}
        hashCode:
          type: integer
          format: int32
        toString:
          type: string
    ImmutableCollection_TodoistLabel_:
      type: object
      allOf:
      - $ref: '#/components/schemas/AbstractCollection_TodoistLabel_'
      - properties:
          empty:
            type: boolean
          partialView:
            type: boolean
    TodoistSettings_2:
      type: object
      properties:
        titleFormat:
          $ref: '#/components/schemas/TodoistTitleFormat'
        withTitleFormat:
          $ref: '#/components/schemas/TodoistTitleFormat'
        equals: {}
        hashCode:
          type: integer
          format: int32
        toString:
          type: string
    TodoistIntegrationDetails:
      type: object
      properties:
        id:
          type: string
        availableProjects:
          $ref: '#/components/schemas/ImmutableList_TodoistProject_'
        labels:
          deprecated: true
          allOf:
          - $ref: '#/components/schemas/ImmutableSet_TodoistLabel_'
        labelNames:
          $ref: '#/components/schemas/ImmutableSet_String_'
        lastSyncedAt:
          type:
          - string
          - 'null'
          format: date-time
        settings:
          $ref: '#/components/schemas/TodoistSettings_5'
        withId:
          type: string
        withAvailableProjects:
          type: array
          items:
            $ref: '#/components/schemas/TodoistProject'
        withLabels:
          type: array
          deprecated: true
          items:
            $ref: '#/components/schemas/TodoistLabel'
        withLabelNames:
          type: array
          items:
            type: string
        withLastSyncedAt:
          type: string
          format: date-time
        withSettings:
          $ref: '#/components/schemas/TodoistSettings_6'
        equals: {}
        hashCode:
          type: integer
          format: int32
        toString:
          type: string
    TodoistTitleFormat:
      type: string
      enum:
      - TASK_TITLE_ONLY
      - TASK_TITLE_THEN_PROJECT
      - PROJECT_NAME_THEN_TASK_TITLE
    TodoistProject:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        parent_id:
          type:
          - string
          - 'null'
        v2_id:
          type:
          - string
          - 'null'
        is_archived:
          type: boolean
        shared:
          type: boolean
        is_deleted:
          type: boolean
        withId:
          type: string
        withName:
          type: string
        withParent_id:
          type:
          - string
          - 'null'
        withV2_id:
          type: string
        withIs_archived:
          type: boolean
        withShared:
          type: boolean
        withIs_deleted:
          type: boolean
        equals: {}
        hashCode:
          type: integer
          format: int32
        toString:
          type: string
        additionalContexts:
          type: array
          items:
            $ref: '#/components/schemas/LogContext'
        logKey:
          type: string
        logValue: {}
    AbstractCollection_TodoistLabel_:
      type: object
      properties:
        empty:
          type: boolean
    TodoistSettings_1:
      type: object
      properties:
        titleFormat:
          $ref: '#/components/schemas/TodoistTitleFormat'
        withTitleFormat:
          $ref: '#/components/schemas/TodoistTitleFormat'
        equals: {}
        hashCode:
          type: integer
          format: int32
        toString:
          type: string
    TodoistSettings_5:
      type: object
      properties:
        titleFormat:
          $ref: '#/components/schemas/TodoistTitleFormat'
        withTitleFormat:
          $ref: '#/components/schemas/TodoistTitleFormat'
        equals: {}
        hashCode:
          type: integer
          format: int32
        toString:
          type: string
    ImmutableSet_String_:
      type: object
      allOf:
      - $ref: '#/components/schemas/ImmutableCollection_String_'
      - $ref: '#/components/schemas/AbstractCollection_String_'
      - properties:
          empty:
            type: boolean
          hashCodeFast:
            type: boolean
    TodoistSettings_6:
      type: object
      properties:
        titleFormat:
          $ref: '#/components/schemas/TodoistTitleFormat'
        withTitleFormat:
          $ref: '#/components/schemas/TodoistTitleFormat'
        equals: {}
        hashCode:
          type: integer
          format: int32
        toString:
          type: string
    ImmutableCollection_String_:
      type: object
      allOf:
      - $ref: '#/components/schemas/AbstractCollection_String_'
      - properties:
          empty:
            type: boolean
          partialView:
            type: boolean
    AbstractCollection_TodoistProject_:
      type: object
      properties:
        empty:
          type: boolean
    TodoistIntegration:
      type: object
      properties:
        id:
          type: string
        requiresLabel:
          type: boolean
        availableProjects:
          $ref: '#/components/schemas/ImmutableList_TodoistProject_'
        selectedProjectIds:
          $ref: '#/components/schemas/ImmutableSet_String_'
        labels:
          $ref: '#/components/schemas/ImmutableSet_TodoistLabel_'
        settings:
          $ref: '#/components/schemas/TodoistSettings_1'
        withId:
          type: string
        withRequiresLabel:
          type: boolean
        withAvailableProjects:
          type: array
          items:
            $ref: '#/components/schemas/TodoistProject'
        withSelectedProjectIds:
          type: array
          items:
            type: string
        withLabels:
          type: array
          items:
            $ref: '#/components/schemas/TodoistLabel'
        withSettings:
          $ref: '#/components/schemas/TodoistSettings_2'
        equals: {}
        hashCode:
          type: integer
          format: int32
        toString:
          type: string
    ImmutableCollection_TodoistProject_:
      type: object
      allOf:
      - $ref: '#/components/schemas/AbstractCollection_TodoistProject_'
      - properties:
          empty:
            type: boolean
          partialView:
            type: boolean
    AbstractCollection_String_:
      type: object
      properties:
        empty:
          type: boolean
    ImmutableList_TodoistProject_:
      type: object
      allOf:
      - $ref: '#/components/schemas/ImmutableCollection_TodoistProject_'
      - $ref: '#/components/schemas/AbstractCollection_TodoistProject_'
      - properties:
          empty:
            type: boolean
          first:
            $ref: '#/components/schemas/TodoistProject'
          last:
            $ref: '#/components/schemas/TodoistProject'
    LogContext:
      type: object
  securitySchemes:
    Authorization:
      type: oauth2