{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ticktick-api-skill",
    "name": "TickTick",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/byungkyu/ticktick-api-skill",
    "canonicalUrl": "https://clawhub.ai/byungkyu/ticktick-api-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/ticktick-api-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ticktick-api-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "LICENSE.txt"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ticktick-api-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/ticktick-api-skill",
    "agentPageUrl": "https://openagent3.xyz/skills/ticktick-api-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ticktick-api-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ticktick-api-skill/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "TickTick",
        "body": "Access the TickTick API with managed OAuth authentication. Manage tasks and projects with full CRUD operations."
      },
      {
        "title": "Quick Start",
        "body": "# List all projects\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/ticktick/open/v1/project')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Base URL",
        "body": "https://gateway.maton.ai/ticktick/{native-api-path}\n\nThe gateway proxies requests to api.ticktick.com and automatically injects your OAuth token."
      },
      {
        "title": "Authentication",
        "body": "All requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\""
      },
      {
        "title": "Getting Your API Key",
        "body": "Sign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key"
      },
      {
        "title": "Connection Management",
        "body": "Manage your TickTick OAuth connections at https://ctrl.maton.ai."
      },
      {
        "title": "List Connections",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=ticktick&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Create Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'ticktick'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Get Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"1fd9c3aa-6b46-456f-aa21-ed154de23ab7\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2026-02-07T09:55:40.786711Z\",\n    \"last_updated_time\": \"2026-02-07T09:56:30.403237Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"ticktick\",\n    \"metadata\": {}\n  }\n}\n\nOpen the returned url in a browser to complete OAuth authorization."
      },
      {
        "title": "Delete Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Specifying Connection",
        "body": "If you have multiple TickTick connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/ticktick/open/v1/project')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '1fd9c3aa-6b46-456f-aa21-ed154de23ab7')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "Project Operations",
        "body": "List Projects\n\nGET /ticktick/open/v1/project\n\nResponse:\n\n[\n  {\n    \"id\": \"6984773291819e6d58b746a8\",\n    \"name\": \"🏡Memo\",\n    \"sortOrder\": 0,\n    \"viewMode\": \"list\",\n    \"kind\": \"TASK\"\n  },\n  {\n    \"id\": \"6984773291819e6d58b746a9\",\n    \"name\": \"🦄Wishlist\",\n    \"sortOrder\": -1099511627776,\n    \"viewMode\": \"list\",\n    \"kind\": \"TASK\"\n  }\n]\n\nGet Project with Tasks\n\nGET /ticktick/open/v1/project/{projectId}/data\n\nResponse:\n\n{\n  \"project\": {\n    \"id\": \"69847732b8e5e969f70e7460\",\n    \"name\": \"👋Welcome\",\n    \"sortOrder\": -3298534883328,\n    \"viewMode\": \"list\",\n    \"kind\": \"TASK\"\n  },\n  \"tasks\": [\n    {\n      \"id\": \"69847732b8e5e969f70e7464\",\n      \"projectId\": \"69847732b8e5e969f70e7460\",\n      \"title\": \"Sample task\",\n      \"content\": \"Task description\",\n      \"priority\": 0,\n      \"status\": 0,\n      \"tags\": [],\n      \"isAllDay\": false\n    }\n  ],\n  \"columns\": [\n    {\n      \"id\": \"69847732b8e5e969f70e7463\",\n      \"projectId\": \"69847732b8e5e969f70e7460\",\n      \"name\": \"Getting Start\",\n      \"sortOrder\": -2199023255552\n    }\n  ]\n}\n\nCreate Project\n\nPOST /ticktick/open/v1/project\nContent-Type: application/json\n\n{\n  \"name\": \"My New Project\",\n  \"viewMode\": \"list\"\n}\n\nResponse:\n\n{\n  \"id\": \"69870cbe8f08b4a6770a38d3\",\n  \"name\": \"My New Project\",\n  \"sortOrder\": 0,\n  \"viewMode\": \"list\",\n  \"kind\": \"TASK\"\n}\n\nviewMode options:\n\nlist - List view\nkanban - Kanban board view\ntimeline - Timeline view\n\nDelete Project\n\nDELETE /ticktick/open/v1/project/{projectId}\n\nReturns empty response on success (status 200)."
      },
      {
        "title": "Task Operations",
        "body": "Get Task\n\nGET /ticktick/open/v1/project/{projectId}/task/{taskId}\n\nResponse:\n\n{\n  \"id\": \"69847732b8e5e969f70e7464\",\n  \"projectId\": \"69847732b8e5e969f70e7460\",\n  \"sortOrder\": -1099511627776,\n  \"title\": \"Task title\",\n  \"content\": \"Task description/notes\",\n  \"timeZone\": \"Asia/Shanghai\",\n  \"isAllDay\": true,\n  \"priority\": 0,\n  \"status\": 0,\n  \"tags\": [],\n  \"columnId\": \"69847732b8e5e969f70e7461\",\n  \"etag\": \"2sayfdsh\",\n  \"kind\": \"TEXT\"\n}\n\nCreate Task\n\nPOST /ticktick/open/v1/task\nContent-Type: application/json\n\n{\n  \"title\": \"New task\",\n  \"projectId\": \"6984773291819e6d58b746a8\",\n  \"content\": \"Task description\",\n  \"priority\": 0,\n  \"dueDate\": \"2026-02-15T10:00:00+0000\",\n  \"isAllDay\": false\n}\n\nResponse:\n\n{\n  \"id\": \"69870cb08f08b86b38951175\",\n  \"projectId\": \"6984773291819e6d58b746a8\",\n  \"sortOrder\": -1099511627776,\n  \"title\": \"New task\",\n  \"timeZone\": \"America/Los_Angeles\",\n  \"isAllDay\": false,\n  \"priority\": 0,\n  \"status\": 0,\n  \"tags\": [],\n  \"etag\": \"gl7ibhor\",\n  \"kind\": \"TEXT\"\n}\n\nPriority values:\n\n0 - None\n1 - Low\n3 - Medium\n5 - High\n\nUpdate Task\n\nPOST /ticktick/open/v1/task/{taskId}\nContent-Type: application/json\n\n{\n  \"id\": \"69870cb08f08b86b38951175\",\n  \"projectId\": \"6984773291819e6d58b746a8\",\n  \"title\": \"Updated task title\",\n  \"priority\": 1\n}\n\nResponse:\n\n{\n  \"id\": \"69870cb08f08b86b38951175\",\n  \"projectId\": \"6984773291819e6d58b746a8\",\n  \"title\": \"Updated task title\",\n  \"priority\": 1,\n  \"status\": 0,\n  \"etag\": \"hmb7uk8c\",\n  \"kind\": \"TEXT\"\n}\n\nComplete Task\n\nPOST /ticktick/open/v1/project/{projectId}/task/{taskId}/complete\n\nReturns empty response on success (status 200).\n\nDelete Task\n\nDELETE /ticktick/open/v1/project/{projectId}/task/{taskId}\n\nReturns empty response on success (status 200)."
      },
      {
        "title": "Task Fields",
        "body": "FieldTypeDescriptionidstringTask IDprojectIdstringParent project IDtitlestringTask titlecontentstringTask description/notes (Markdown supported)priorityintegerPriority: 0=None, 1=Low, 3=Medium, 5=Highstatusinteger0=Active, 2=CompleteddueDatestringDue date in ISO 8601 formatstartDatestringStart date in ISO 8601 formatisAllDaybooleanWhether task is all-daytimeZonestringTimezone (e.g., \"America/Los_Angeles\")tagsarrayList of tag namescolumnIdstringKanban column ID (if applicable)sortOrdernumberSort order within projectkindstringTask type: \"TEXT\", \"CHECKLIST\""
      },
      {
        "title": "JavaScript",
        "body": "// List all projects\nconst response = await fetch(\n  'https://gateway.maton.ai/ticktick/open/v1/project',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst projects = await response.json();\n\n// Create a task\nconst createResponse = await fetch(\n  'https://gateway.maton.ai/ticktick/open/v1/task',\n  {\n    method: 'POST',\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`,\n      'Content-Type': 'application/json'\n    },\n    body: JSON.stringify({\n      title: 'New task',\n      projectId: 'PROJECT_ID'\n    })\n  }\n);"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\n# List all projects\nresponse = requests.get(\n    'https://gateway.maton.ai/ticktick/open/v1/project',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n)\nprojects = response.json()\n\n# Create a task\nresponse = requests.post(\n    'https://gateway.maton.ai/ticktick/open/v1/task',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'Content-Type': 'application/json'\n    },\n    json={\n        'title': 'New task',\n        'projectId': 'PROJECT_ID'\n    }\n)"
      },
      {
        "title": "Notes",
        "body": "The Open API provides access to tasks and projects only\nHabits, focus/pomodoro, and tags are not available through the Open API\nTask status values: 0 = Active, 2 = Completed\nPriority values: 0 = None, 1 = Low, 3 = Medium, 5 = High\nDates use ISO 8601 format with timezone offset (e.g., 2026-02-15T10:00:00+0000)\nviewMode for projects: list, kanban, or timeline\nThe columns field in project data is used for Kanban board columns\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments"
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Missing TickTick connection or invalid request401Invalid or missing Maton API key404Resource not found429Rate limited4xx/5xxPassthrough error from TickTick API"
      },
      {
        "title": "Troubleshooting: API Key Issues",
        "body": "Check that the MATON_API_KEY environment variable is set:\n\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Troubleshooting: Invalid App Name",
        "body": "Ensure your URL path starts with ticktick. For example:\n\nCorrect: https://gateway.maton.ai/ticktick/open/v1/project\nIncorrect: https://gateway.maton.ai/open/v1/project"
      },
      {
        "title": "Resources",
        "body": "TickTick Developer Portal\nTickTick Help Center\nMaton Community\nMaton Support"
      }
    ],
    "body": "TickTick\n\nAccess the TickTick API with managed OAuth authentication. Manage tasks and projects with full CRUD operations.\n\nQuick Start\n# List all projects\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/ticktick/open/v1/project')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nBase URL\nhttps://gateway.maton.ai/ticktick/{native-api-path}\n\n\nThe gateway proxies requests to api.ticktick.com and automatically injects your OAuth token.\n\nAuthentication\n\nAll requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\"\n\nGetting Your API Key\nSign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key\nConnection Management\n\nManage your TickTick OAuth connections at https://ctrl.maton.ai.\n\nList Connections\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=ticktick&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Connection\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'ticktick'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"1fd9c3aa-6b46-456f-aa21-ed154de23ab7\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2026-02-07T09:55:40.786711Z\",\n    \"last_updated_time\": \"2026-02-07T09:56:30.403237Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"ticktick\",\n    \"metadata\": {}\n  }\n}\n\n\nOpen the returned url in a browser to complete OAuth authorization.\n\nDelete Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nSpecifying Connection\n\nIf you have multiple TickTick connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/ticktick/open/v1/project')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '1fd9c3aa-6b46-456f-aa21-ed154de23ab7')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nIf omitted, the gateway uses the default (oldest) active connection.\n\nAPI Reference\nProject Operations\nList Projects\nGET /ticktick/open/v1/project\n\n\nResponse:\n\n[\n  {\n    \"id\": \"6984773291819e6d58b746a8\",\n    \"name\": \"🏡Memo\",\n    \"sortOrder\": 0,\n    \"viewMode\": \"list\",\n    \"kind\": \"TASK\"\n  },\n  {\n    \"id\": \"6984773291819e6d58b746a9\",\n    \"name\": \"🦄Wishlist\",\n    \"sortOrder\": -1099511627776,\n    \"viewMode\": \"list\",\n    \"kind\": \"TASK\"\n  }\n]\n\nGet Project with Tasks\nGET /ticktick/open/v1/project/{projectId}/data\n\n\nResponse:\n\n{\n  \"project\": {\n    \"id\": \"69847732b8e5e969f70e7460\",\n    \"name\": \"👋Welcome\",\n    \"sortOrder\": -3298534883328,\n    \"viewMode\": \"list\",\n    \"kind\": \"TASK\"\n  },\n  \"tasks\": [\n    {\n      \"id\": \"69847732b8e5e969f70e7464\",\n      \"projectId\": \"69847732b8e5e969f70e7460\",\n      \"title\": \"Sample task\",\n      \"content\": \"Task description\",\n      \"priority\": 0,\n      \"status\": 0,\n      \"tags\": [],\n      \"isAllDay\": false\n    }\n  ],\n  \"columns\": [\n    {\n      \"id\": \"69847732b8e5e969f70e7463\",\n      \"projectId\": \"69847732b8e5e969f70e7460\",\n      \"name\": \"Getting Start\",\n      \"sortOrder\": -2199023255552\n    }\n  ]\n}\n\nCreate Project\nPOST /ticktick/open/v1/project\nContent-Type: application/json\n\n{\n  \"name\": \"My New Project\",\n  \"viewMode\": \"list\"\n}\n\n\nResponse:\n\n{\n  \"id\": \"69870cbe8f08b4a6770a38d3\",\n  \"name\": \"My New Project\",\n  \"sortOrder\": 0,\n  \"viewMode\": \"list\",\n  \"kind\": \"TASK\"\n}\n\n\nviewMode options:\n\nlist - List view\nkanban - Kanban board view\ntimeline - Timeline view\nDelete Project\nDELETE /ticktick/open/v1/project/{projectId}\n\n\nReturns empty response on success (status 200).\n\nTask Operations\nGet Task\nGET /ticktick/open/v1/project/{projectId}/task/{taskId}\n\n\nResponse:\n\n{\n  \"id\": \"69847732b8e5e969f70e7464\",\n  \"projectId\": \"69847732b8e5e969f70e7460\",\n  \"sortOrder\": -1099511627776,\n  \"title\": \"Task title\",\n  \"content\": \"Task description/notes\",\n  \"timeZone\": \"Asia/Shanghai\",\n  \"isAllDay\": true,\n  \"priority\": 0,\n  \"status\": 0,\n  \"tags\": [],\n  \"columnId\": \"69847732b8e5e969f70e7461\",\n  \"etag\": \"2sayfdsh\",\n  \"kind\": \"TEXT\"\n}\n\nCreate Task\nPOST /ticktick/open/v1/task\nContent-Type: application/json\n\n{\n  \"title\": \"New task\",\n  \"projectId\": \"6984773291819e6d58b746a8\",\n  \"content\": \"Task description\",\n  \"priority\": 0,\n  \"dueDate\": \"2026-02-15T10:00:00+0000\",\n  \"isAllDay\": false\n}\n\n\nResponse:\n\n{\n  \"id\": \"69870cb08f08b86b38951175\",\n  \"projectId\": \"6984773291819e6d58b746a8\",\n  \"sortOrder\": -1099511627776,\n  \"title\": \"New task\",\n  \"timeZone\": \"America/Los_Angeles\",\n  \"isAllDay\": false,\n  \"priority\": 0,\n  \"status\": 0,\n  \"tags\": [],\n  \"etag\": \"gl7ibhor\",\n  \"kind\": \"TEXT\"\n}\n\n\nPriority values:\n\n0 - None\n1 - Low\n3 - Medium\n5 - High\nUpdate Task\nPOST /ticktick/open/v1/task/{taskId}\nContent-Type: application/json\n\n{\n  \"id\": \"69870cb08f08b86b38951175\",\n  \"projectId\": \"6984773291819e6d58b746a8\",\n  \"title\": \"Updated task title\",\n  \"priority\": 1\n}\n\n\nResponse:\n\n{\n  \"id\": \"69870cb08f08b86b38951175\",\n  \"projectId\": \"6984773291819e6d58b746a8\",\n  \"title\": \"Updated task title\",\n  \"priority\": 1,\n  \"status\": 0,\n  \"etag\": \"hmb7uk8c\",\n  \"kind\": \"TEXT\"\n}\n\nComplete Task\nPOST /ticktick/open/v1/project/{projectId}/task/{taskId}/complete\n\n\nReturns empty response on success (status 200).\n\nDelete Task\nDELETE /ticktick/open/v1/project/{projectId}/task/{taskId}\n\n\nReturns empty response on success (status 200).\n\nTask Fields\nField\tType\tDescription\nid\tstring\tTask ID\nprojectId\tstring\tParent project ID\ntitle\tstring\tTask title\ncontent\tstring\tTask description/notes (Markdown supported)\npriority\tinteger\tPriority: 0=None, 1=Low, 3=Medium, 5=High\nstatus\tinteger\t0=Active, 2=Completed\ndueDate\tstring\tDue date in ISO 8601 format\nstartDate\tstring\tStart date in ISO 8601 format\nisAllDay\tboolean\tWhether task is all-day\ntimeZone\tstring\tTimezone (e.g., \"America/Los_Angeles\")\ntags\tarray\tList of tag names\ncolumnId\tstring\tKanban column ID (if applicable)\nsortOrder\tnumber\tSort order within project\nkind\tstring\tTask type: \"TEXT\", \"CHECKLIST\"\nCode Examples\nJavaScript\n// List all projects\nconst response = await fetch(\n  'https://gateway.maton.ai/ticktick/open/v1/project',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst projects = await response.json();\n\n// Create a task\nconst createResponse = await fetch(\n  'https://gateway.maton.ai/ticktick/open/v1/task',\n  {\n    method: 'POST',\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`,\n      'Content-Type': 'application/json'\n    },\n    body: JSON.stringify({\n      title: 'New task',\n      projectId: 'PROJECT_ID'\n    })\n  }\n);\n\nPython\nimport os\nimport requests\n\n# List all projects\nresponse = requests.get(\n    'https://gateway.maton.ai/ticktick/open/v1/project',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n)\nprojects = response.json()\n\n# Create a task\nresponse = requests.post(\n    'https://gateway.maton.ai/ticktick/open/v1/task',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'Content-Type': 'application/json'\n    },\n    json={\n        'title': 'New task',\n        'projectId': 'PROJECT_ID'\n    }\n)\n\nNotes\nThe Open API provides access to tasks and projects only\nHabits, focus/pomodoro, and tags are not available through the Open API\nTask status values: 0 = Active, 2 = Completed\nPriority values: 0 = None, 1 = Low, 3 = Medium, 5 = High\nDates use ISO 8601 format with timezone offset (e.g., 2026-02-15T10:00:00+0000)\nviewMode for projects: list, kanban, or timeline\nThe columns field in project data is used for Kanban board columns\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments\nError Handling\nStatus\tMeaning\n400\tMissing TickTick connection or invalid request\n401\tInvalid or missing Maton API key\n404\tResource not found\n429\tRate limited\n4xx/5xx\tPassthrough error from TickTick API\nTroubleshooting: API Key Issues\nCheck that the MATON_API_KEY environment variable is set:\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nTroubleshooting: Invalid App Name\nEnsure your URL path starts with ticktick. For example:\nCorrect: https://gateway.maton.ai/ticktick/open/v1/project\nIncorrect: https://gateway.maton.ai/open/v1/project\nResources\nTickTick Developer Portal\nTickTick Help Center\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/ticktick-api-skill",
    "publisherUrl": "https://clawhub.ai/byungkyu/ticktick-api-skill",
    "owner": "byungkyu",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ticktick-api-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/ticktick-api-skill",
    "agentUrl": "https://openagent3.xyz/skills/ticktick-api-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ticktick-api-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ticktick-api-skill/agent.md"
  }
}