Reclaim.ai quest API

The quest API from Reclaim.ai — 1 operation(s) for quest.

Operations 2

GET /api/users/current/quest #
PATCH /api/users/current/quest #

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-quest-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-quest-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reclaim account-time-schemes Quest 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: quest
paths:
  /api/users/current/quest:
    get:
      tags:
      - quest
      operationId: getCompletedQuests
      responses:
        '200':
          description: getCompletedQuests 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserQuests'
      security:
      - Authorization: []
    patch:
      tags:
      - quest
      operationId: completeQuest
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CompleteQuestRequest'
        required: true
      responses:
        '200':
          description: completeQuest 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserQuests'
      security:
      - Authorization: []
components:
  schemas:
    QuestType:
      type: string
      enum:
      - HOURS_OVERVIEW_2
      - PLANNER_OVERVIEW_2
      - TASK_INTEGRATIONS_2
      - EXTENSIONS_2
      - AUTO_COLOR_CODING
      - PRIORITIZATION
      - BUILD_YOUR_TEAM
      - SETTINGS_OVERVIEW_2
      - FLEXIBLE_TIME_BLOCKING
      - MEETING_BUFFERS
      - SCHEDULING_LINK_OVERVIEW_2
      - CALENDAR_SYNC_OVERVIEW_2
      - SLACK_STATUS_SYNC_2
      - NO_MEETING_DAYS
      - SMART_1_1_2
      - STATS_2
      - HABITS_OVERVIEW_2
      - TASKS_OVERVIEW_2
      - TASKS_BATCH_ACTIONS
      - SMART_MEETINGS_OVERVIEW
      - SMART_HABITS_OVERVIEW
      - SMART_MEETINGS_JUST_NEW
      - SMART_HABITS_JUST_NEW
      - WELCOME_TO_RECLAIM
      - SET_AVAILABILITY
      - SYNC_CALENDAR
      - SET_SCHEDULING_HOURS
      - INSTALL_GCAL_ADDON
      - INSTALL_SLACK_INTEGRATION
      - HABITS_OVERVIEW
      - CREATE_AND_CUSTOMIZE_HABITS
      - MANAGE_HABITS
      - SCHEDULING_LINKS_OVERVIEW
      - SETUP_SCHEDULING_LINKS
      - SETUP_TEAM_LINKS
      - SMART_ONE_ON_ONE_OVERVIEW
      - SETUP_FIRST_SMART_ONE_ON_ONE
      - MANAGE_SMART_ONE_ON_ONE
      - TASK_OVERVIEW
      - ADD_FIRST_TASK
      - ADD_TASK_INTEGRATION
      - MANAGE_TASKS
      - SET_TASK_DEFAULTS
      - AUTO_SCHEDULE_BREAK_AND_TRAVEL_TIME
      - SETUP_NO_MEETING_DAYS
      - CUSTOMIZE_EVENT_COLOR_CODING
      - TRACK_AND_ANALYZE_PRODUCTIVITY
      - ADD_MEMBERS_TO_TEAM
      - SELECT_PLAN
    CompleteQuestRequest:
      required:
      - isComplete
      - questType
      type: object
      properties:
        questType:
          $ref: '#/components/schemas/QuestType'
        isComplete:
          type:
          - boolean
          - 'null'
    UserQuests:
      required:
      - completedQuests
      type: object
      properties:
        completedQuests:
          type: array
          items:
            $ref: '#/components/schemas/QuestType'
  securitySchemes:
    Authorization:
      type: oauth2