{
  "schemaVersion": "1.0",
  "item": {
    "slug": "notion-2026-01-15",
    "name": "Notion API 2026 01 15",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/DongkuKim/notion-2026-01-15",
    "canonicalUrl": "https://clawhub.ai/DongkuKim/notion-2026-01-15",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/notion-2026-01-15",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=notion-2026-01-15",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/notion-2026-01-15"
    },
    "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/notion-2026-01-15",
    "agentPageUrl": "https://openagent3.xyz/skills/notion-2026-01-15/agent",
    "manifestUrl": "https://openagent3.xyz/skills/notion-2026-01-15/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/notion-2026-01-15/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": "API Basics",
        "body": "All requests need:\n\nNOTION_KEY=$(cat ~/.config/notion/api_key)\ncurl -X GET \"[https://api.notion.com/v1/](https://api.notion.com/v1/)...\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application/json\"\n\nNote: The Notion-Version header is required. Use 2025-09-03. The features released in Jan 2026 (Move Page, Templates) are additive and use this version header."
      },
      {
        "title": "Common Operations",
        "body": "Search for pages and data sources:\n\ncurl -X POST \"[https://api.notion.com/v1/search](https://api.notion.com/v1/search)\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"query\": \"page title\"}'\n\nGet page:\n\ncurl \"[https://api.notion.com/v1/pages/](https://api.notion.com/v1/pages/){page_id}\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\"\n\nMove a page (Change Parent):\n\ncurl -X POST \"[https://api.notion.com/v1/pages/](https://api.notion.com/v1/pages/){page_id}/move\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"parent\": {\"type\": \"page_id\", \"page_id\": \"new_parent_page_id\"}\n  }'\n\nNote: To move to a database, use {\"type\": \"data_source_id\", \"data_source_id\": \"...\"}.\n\nCreate page (Standard):\n\ncurl -X POST \"[https://api.notion.com/v1/pages](https://api.notion.com/v1/pages)\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"parent\": {\"database_id\": \"xxx\"},\n    \"properties\": {\n      \"Name\": {\"title\": [{\"text\": {\"content\": \"New Item\"}}]},\n      \"Status\": {\"select\": {\"name\": \"Todo\"}}\n    }\n  }'\n\nCreate page from Template:\n\ncurl -X POST \"[https://api.notion.com/v1/pages](https://api.notion.com/v1/pages)\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"parent\": {\"database_id\": \"xxx\"},\n    \"template\": {\"type\": \"template_id\", \"template_id\": \"yyy\"}\n  }'\n\nList Data Source Templates:\n\ncurl -X GET \"[https://api.notion.com/v1/data_sources/](https://api.notion.com/v1/data_sources/){data_source_id}/templates\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\"\n\nUpdate page properties:\n\ncurl -X PATCH \"[https://api.notion.com/v1/pages/](https://api.notion.com/v1/pages/){page_id}\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"properties\": {\"Status\": {\"select\": {\"name\": \"Done\"}}},\n    \"is_locked\": true\n  }'\n\nApply Template to existing page (erasing content):\n\ncurl -X PATCH \"[https://api.notion.com/v1/pages/](https://api.notion.com/v1/pages/){page_id}\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"template\": {\"type\": \"template_id\", \"template_id\": \"yyy\"},\n    \"erase_content\": true\n  }'\n\nQuery a data source (database):\n\ncurl -X POST \"[https://api.notion.com/v1/data_sources/](https://api.notion.com/v1/data_sources/){data_source_id}/query\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"filter\": {\"property\": \"Status\", \"select\": {\"equals\": \"Active\"}},\n    \"sorts\": [{\"property\": \"Date\", \"direction\": \"descending\"}]\n  }'\n\nAdd blocks to page:\n\ncurl -X PATCH \"[https://api.notion.com/v1/blocks/](https://api.notion.com/v1/blocks/){page_id}/children\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"children\": [\n      {\"object\": \"block\", \"type\": \"paragraph\", \"paragraph\": {\"rich_text\": [{\"text\": {\"content\": \"Hello\"}}]}}\n    ]\n  }'"
      },
      {
        "title": "Property Types",
        "body": "Common property formats for database items:\n\nTitle: {\"title\": [{\"text\": {\"content\": \"...\"}}]}\nRich text: {\"rich_text\": [{\"text\": {\"content\": \"...\"}}]}\nSelect: {\"select\": {\"name\": \"Option\"}}\nMulti-select: {\"multi_select\": [{\"name\": \"A\"}, {\"name\": \"B\"}]}\nDate: {\"date\": {\"start\": \"2024-01-15\", \"end\": \"2024-01-16\"}}\nCheckbox: {\"checkbox\": true}\nNumber: {\"number\": 42}\nURL: {\"url\": \"https://...\"}\nEmail: {\"email\": \"a@b.com\"}\nRelation: {\"relation\": [{\"id\": \"page_id\"}]}"
      },
      {
        "title": "Recent Changes (Jan 2026)",
        "body": "Move Page API: Use /v1/pages/{id}/move to reparent pages.\nTemplates: New endpoints to list templates and parameters to apply them during page creation/update.\nLocking: is_locked boolean now supported in Update Page.\nTokens: New tokens use ntn_ prefix (formerly secret_).\nData Sources: Continue using data_source_id for queries (introduced in 2025-09-03)."
      },
      {
        "title": "Notes",
        "body": "Page/database IDs are UUIDs (with or without dashes)\nThe API cannot set database view filters — that's UI-only\nRate limit: ~3 requests/second average\nUse is_inline: true when creating data sources to embed them in pages"
      }
    ],
    "body": "Here is the complete SKILL.md file updated for the January 15, 2026 API state.\n\n---\nname: notion api 202601 15\ndescription: Notion API updated to 2026 01 15 changes for creating, moving, and managing pages, data sources, and blocks.\nhomepage: https://developers.notion.com\nmetadata: {\"clawdbot\":{\"emoji\":\"📝\"}}\n---\n\n# notion\n\nUse the Notion API to create/read/update/move pages, data sources (databases), and blocks.\n\n## Setup\n\n1. Create an integration at https://notion.so/my-integrations\n2. Copy the API key (starts with `ntn_` or `secret_`)\n3. Store it:\n```bash\nmkdir -p ~/.config/notion\necho \"ntn_your_key_here\" > ~/.config/notion/api_key\n\n\nShare target pages/databases with your integration (click \"...\" → \"Connect to\" → your integration name)\nAPI Basics\n\nAll requests need:\n\nNOTION_KEY=$(cat ~/.config/notion/api_key)\ncurl -X GET \"[https://api.notion.com/v1/](https://api.notion.com/v1/)...\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application/json\"\n\n\n\nNote: The Notion-Version header is required. Use 2025-09-03. The features released in Jan 2026 (Move Page, Templates) are additive and use this version header.\n\nCommon Operations\n\nSearch for pages and data sources:\n\ncurl -X POST \"[https://api.notion.com/v1/search](https://api.notion.com/v1/search)\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"query\": \"page title\"}'\n\n\n\nGet page:\n\ncurl \"[https://api.notion.com/v1/pages/](https://api.notion.com/v1/pages/){page_id}\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\"\n\n\n\nMove a page (Change Parent):\n\ncurl -X POST \"[https://api.notion.com/v1/pages/](https://api.notion.com/v1/pages/){page_id}/move\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"parent\": {\"type\": \"page_id\", \"page_id\": \"new_parent_page_id\"}\n  }'\n\n\n\nNote: To move to a database, use {\"type\": \"data_source_id\", \"data_source_id\": \"...\"}.\n\nCreate page (Standard):\n\ncurl -X POST \"[https://api.notion.com/v1/pages](https://api.notion.com/v1/pages)\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"parent\": {\"database_id\": \"xxx\"},\n    \"properties\": {\n      \"Name\": {\"title\": [{\"text\": {\"content\": \"New Item\"}}]},\n      \"Status\": {\"select\": {\"name\": \"Todo\"}}\n    }\n  }'\n\n\n\nCreate page from Template:\n\ncurl -X POST \"[https://api.notion.com/v1/pages](https://api.notion.com/v1/pages)\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"parent\": {\"database_id\": \"xxx\"},\n    \"template\": {\"type\": \"template_id\", \"template_id\": \"yyy\"}\n  }'\n\n\n\nList Data Source Templates:\n\ncurl -X GET \"[https://api.notion.com/v1/data_sources/](https://api.notion.com/v1/data_sources/){data_source_id}/templates\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\"\n\n\n\nUpdate page properties:\n\ncurl -X PATCH \"[https://api.notion.com/v1/pages/](https://api.notion.com/v1/pages/){page_id}\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"properties\": {\"Status\": {\"select\": {\"name\": \"Done\"}}},\n    \"is_locked\": true\n  }'\n\n\n\nApply Template to existing page (erasing content):\n\ncurl -X PATCH \"[https://api.notion.com/v1/pages/](https://api.notion.com/v1/pages/){page_id}\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"template\": {\"type\": \"template_id\", \"template_id\": \"yyy\"},\n    \"erase_content\": true\n  }'\n\n\n\nQuery a data source (database):\n\ncurl -X POST \"[https://api.notion.com/v1/data_sources/](https://api.notion.com/v1/data_sources/){data_source_id}/query\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"filter\": {\"property\": \"Status\", \"select\": {\"equals\": \"Active\"}},\n    \"sorts\": [{\"property\": \"Date\", \"direction\": \"descending\"}]\n  }'\n\n\n\nAdd blocks to page:\n\ncurl -X PATCH \"[https://api.notion.com/v1/blocks/](https://api.notion.com/v1/blocks/){page_id}/children\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"children\": [\n      {\"object\": \"block\", \"type\": \"paragraph\", \"paragraph\": {\"rich_text\": [{\"text\": {\"content\": \"Hello\"}}]}}\n    ]\n  }'\n\n\nProperty Types\n\nCommon property formats for database items:\n\nTitle: {\"title\": [{\"text\": {\"content\": \"...\"}}]}\nRich text: {\"rich_text\": [{\"text\": {\"content\": \"...\"}}]}\nSelect: {\"select\": {\"name\": \"Option\"}}\nMulti-select: {\"multi_select\": [{\"name\": \"A\"}, {\"name\": \"B\"}]}\nDate: {\"date\": {\"start\": \"2024-01-15\", \"end\": \"2024-01-16\"}}\nCheckbox: {\"checkbox\": true}\nNumber: {\"number\": 42}\nURL: {\"url\": \"https://...\"}\nEmail: {\"email\": \"a@b.com\"}\nRelation: {\"relation\": [{\"id\": \"page_id\"}]}\nRecent Changes (Jan 2026)\nMove Page API: Use /v1/pages/{id}/move to reparent pages.\nTemplates: New endpoints to list templates and parameters to apply them during page creation/update.\nLocking: is_locked boolean now supported in Update Page.\nTokens: New tokens use ntn_ prefix (formerly secret_).\nData Sources: Continue using data_source_id for queries (introduced in 2025-09-03).\nNotes\nPage/database IDs are UUIDs (with or without dashes)\nThe API cannot set database view filters — that's UI-only\nRate limit: ~3 requests/second average\nUse is_inline: true when creating data sources to embed them in pages"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/DongkuKim/notion-2026-01-15",
    "publisherUrl": "https://clawhub.ai/DongkuKim/notion-2026-01-15",
    "owner": "DongkuKim",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/notion-2026-01-15",
    "downloadUrl": "https://openagent3.xyz/downloads/notion-2026-01-15",
    "agentUrl": "https://openagent3.xyz/skills/notion-2026-01-15/agent",
    "manifestUrl": "https://openagent3.xyz/skills/notion-2026-01-15/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/notion-2026-01-15/agent.md"
  }
}