Reclaim.ai clickup API

The clickup API from Reclaim.ai — 5 operation(s) for clickup.

Operations 6

GET /api/clickup/integrations #
DELETE /api/clickup/integrations #
GET /api/clickup/integrations/details #
PATCH /api/clickup/integrations/settings/{workspaceId} #
PATCH /api/clickup/integrations/{workspaceId} #
GET /web/clickup/task/{taskId} #

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-clickup-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-clickup-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reclaim account-time-schemes Clickup 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: clickup
paths:
  /api/clickup/integrations:
    get:
      tags:
      - clickup
      operationId: integrations_2
      responses:
        '200':
          description: integrations_2 200 response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ClickUpIntegration'
      deprecated: true
      security:
      - Authorization: []
    delete:
      tags:
      - clickup
      operationId: deleteIntegration_1
      responses:
        '200':
          description: deleteIntegration_1 200 response
          content:
            application/json:
              schema:
                type: object
      security:
      - Authorization: []
  /api/clickup/integrations/details:
    get:
      tags:
      - clickup
      operationId: clickUpIntegrationsDetails
      responses:
        '200':
          description: clickUpIntegrationsDetails 200 response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ClickUpIntegrationDetails'
      security:
      - Authorization: []
  /api/clickup/integrations/settings/{workspaceId}:
    patch:
      tags:
      - clickup
      operationId: patchIntegration
      parameters:
      - name: workspaceId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ClickUpIntegrationPatch'
        required: true
      responses:
        '200':
          description: patchIntegration 200 response
          content:
            application/json:
              schema:
                type: object
      security:
      - Authorization: []
  /api/clickup/integrations/{workspaceId}:
    patch:
      tags:
      - clickup
      operationId: patchIntegration_1
      parameters:
      - name: workspaceId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeprecatedClickUpIntegrationPatch'
        required: true
      responses:
        '200':
          description: patchIntegration_1 200 response
          content:
            application/json:
              schema:
                type: object
      deprecated: true
      security:
      - Authorization: []
  /web/clickup/task/{taskId}:
    get:
      tags:
      - clickup
      operationId: taskDetails_1
      parameters:
      - name: taskId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: taskDetails_1 200 response
          content:
            application/json:
              schema:
                type: object
components:
  schemas:
    ClickUpIntegrationPatch:
      type: object
      properties:
        titleFormat:
          allOf:
          - $ref: '#/components/schemas/ClickUpTitleFormat'
        bypassTimeTracking:
          type:
          - boolean
          - 'null'
        withTitleFormat:
          $ref: '#/components/schemas/ClickUpTitleFormat'
        withBypassTimeTracking:
          type: boolean
        equals: {}
        hashCode:
          type: integer
          format: int32
        toString:
          type: string
    ClickUpStatus:
      type: object
      properties:
        status:
          type: string
        orderindex:
          type: integer
          format: int32
        type:
          $ref: '#/components/schemas/ClickUpStatusType'
        color:
          type:
          - string
          - 'null'
        withStatus:
          type: string
        withOrderindex:
          type: integer
          format: int32
        withType:
          $ref: '#/components/schemas/ClickUpStatusType'
        withColor:
          type: string
        equals: {}
        hashCode:
          type: integer
          format: int32
        toString:
          type: string
    ImmutableSet_ClickUpSpace_:
      type: object
      allOf:
      - $ref: '#/components/schemas/ImmutableCollection_ClickUpSpace_'
      - $ref: '#/components/schemas/AbstractCollection_ClickUpSpace_'
      - properties:
          empty:
            type: boolean
          hashCodeFast:
            type: boolean
    ImmutableCollection_ClickUpStatus_:
      type: object
      allOf:
      - $ref: '#/components/schemas/AbstractCollection_ClickUpStatus_'
      - properties:
          empty:
            type: boolean
          partialView:
            type: boolean
    ClickUpTitleFormat:
      type: string
      enum:
      - TASK_TITLE_ONLY
      - TASK_TITLE_THEN_LIST
      - TASK_TITLE_THEN_LIST_THEN_SPACE
      - TASK_TITLE_THEN_SPACE
      - SPACE_NAME_THEN_TASK_TITLE
    ClickUpResource:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        withId:
          type: string
        withName:
          type: string
        equals: {}
        hashCode:
          type: integer
          format: int32
        toString:
          type: string
    AbstractCollection_ClickUpSpace_:
      type: object
      properties:
        empty:
          type: boolean
    ClickUpSpace:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        features:
          type: object
          additionalProperties: true
        statuses:
          $ref: '#/components/schemas/ImmutableList_ClickUpStatus_'
        withId:
          type: string
        withName:
          type: string
        withFeatures:
          type: object
          additionalProperties: true
        withStatuses:
          type: array
          items:
            $ref: '#/components/schemas/ClickUpStatus'
        equals: {}
        hashCode:
          type: integer
          format: int32
        toString:
          type: string
    ClickUpStatusType:
      type: string
      enum:
      - open
      - done
      - closed
      - custom
      - unstarted
      - active
      x-enum-varnames:
      - open
      - done
      - closed
      - custom
      - unstarted
      - active
    ImmutableSet_String_:
      type: object
      allOf:
      - $ref: '#/components/schemas/ImmutableCollection_String_'
      - $ref: '#/components/schemas/AbstractCollection_String_'
      - properties:
          empty:
            type: boolean
          hashCodeFast:
            type: boolean
    ClickUpSpaceWithEligibility:
      required:
      - features
      - id
      - isEligible
      - name
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        isEligible:
          type: boolean
        features:
          type: object
          additionalProperties: true
    ImmutableCollection_String_:
      type: object
      allOf:
      - $ref: '#/components/schemas/AbstractCollection_String_'
      - properties:
          empty:
            type: boolean
          partialView:
            type: boolean
    ClickUpIntegration:
      type: object
      properties:
        workspace:
          $ref: '#/components/schemas/ClickUpResource'
        available_spaces:
          $ref: '#/components/schemas/ImmutableSet_ClickUpSpace_'
        selected_space_ids:
          $ref: '#/components/schemas/ImmutableSet_String_'
        requires_tag:
          type: boolean
        withWorkspace:
          $ref: '#/components/schemas/ClickUpResource'
        withAvailable_spaces:
          type: array
          items:
            $ref: '#/components/schemas/ClickUpSpace'
        withSelected_space_ids:
          type: array
          items:
            type: string
        withRequires_tag:
          type: boolean
        equals: {}
        hashCode:
          type: integer
          format: int32
        toString:
          type: string
    ImmutableList_ClickUpStatus_:
      type: object
      allOf:
      - $ref: '#/components/schemas/ImmutableCollection_ClickUpStatus_'
      - $ref: '#/components/schemas/AbstractCollection_ClickUpStatus_'
      - properties:
          empty:
            type: boolean
          first:
            $ref: '#/components/schemas/ClickUpStatus'
          last:
            $ref: '#/components/schemas/ClickUpStatus'
    AbstractCollection_ClickUpStatus_:
      type: object
      properties:
        empty:
          type: boolean
    AbstractCollection_String_:
      type: object
      properties:
        empty:
          type: boolean
    ImmutableCollection_ClickUpSpace_:
      type: object
      allOf:
      - $ref: '#/components/schemas/AbstractCollection_ClickUpSpace_'
      - properties:
          empty:
            type: boolean
          partialView:
            type: boolean
    ClickUpIntegrationDetails:
      required:
      - availableSpaces
      - tags
      - titleFormat
      - workspace
      type: object
      properties:
        workspace:
          $ref: '#/components/schemas/ClickUpResource'
        availableSpaces:
          type: array
          items:
            $ref: '#/components/schemas/ClickUpSpaceWithEligibility'
        tags:
          type: array
          items:
            type: string
        lastSynced:
          type:
          - string
          - 'null'
          format: date-time
        titleFormat:
          $ref: '#/components/schemas/ClickUpTitleFormat'
        bypassTimeTracking:
          type:
          - boolean
          - 'null'
    DeprecatedClickUpIntegrationPatch:
      type: object
      properties:
        selected_space_ids:
          $ref: '#/components/schemas/ImmutableSet_String_'
        requires_tag:
          type: boolean
        withSelected_space_ids:
          type: array
          items:
            type: string
        withRequires_tag:
          type: boolean
        equals: {}
        hashCode:
          type: integer
          format: int32
        toString:
          type: string
      deprecated: true
  securitySchemes:
    Authorization:
      type: oauth2