[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-deepgram-notion":3,"mdc-vd8v2q-key":31,"related-repo-deepgram-notion":1926,"related-org-deepgram-notion":2018},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":21,"repoUrl":22,"updatedAt":23,"license":24,"forks":25,"topics":26,"repo":27,"sourceUrl":29,"mdContent":30},"notion","manage Notion pages and databases","Notion API for creating and managing pages, databases, and blocks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"deepgram","Deepgram","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fdeepgram.png",[12,15,18],{"name":13,"slug":4,"type":14},"Notion","tag",{"name":16,"slug":17,"type":14},"Knowledge Management","knowledge-management",{"name":19,"slug":20,"type":14},"API Development","api-development",23,"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fdglabs-deepclaw","2026-07-12T08:28:16.814788",null,9,[],{"repoUrl":22,"stars":21,"forks":25,"topics":28,"description":24},[],"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fdglabs-deepclaw\u002Ftree\u002FHEAD\u002Fskills\u002Fnotion","---\nname: notion\ndescription: Notion API for creating and managing pages, databases, and blocks.\nhomepage: https:\u002F\u002Fdevelopers.notion.com\nmetadata:\n  {\n    \"openclaw\":\n      { \"emoji\": \"📝\", \"requires\": { \"env\": [\"NOTION_API_KEY\"] }, \"primaryEnv\": \"NOTION_API_KEY\" },\n  }\n---\n\n# notion\n\nUse the Notion API to create\u002Fread\u002Fupdate pages, data sources (databases), and blocks.\n\n## Setup\n\n1. Create an integration at https:\u002F\u002Fnotion.so\u002Fmy-integrations\n2. Copy the API key (starts with `ntn_` or `secret_`)\n3. Store it:\n\n```bash\nmkdir -p ~\u002F.config\u002Fnotion\necho \"ntn_your_key_here\" > ~\u002F.config\u002Fnotion\u002Fapi_key\n```\n\n4. Share target pages\u002Fdatabases with your integration (click \"...\" → \"Connect to\" → your integration name)\n\n## API Basics\n\nAll requests need:\n\n```bash\nNOTION_KEY=$(cat ~\u002F.config\u002Fnotion\u002Fapi_key)\ncurl -X GET \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002F...\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\"\n```\n\n> **Note:** The `Notion-Version` header is required. This skill uses `2025-09-03` (latest). In this version, databases are called \"data sources\" in the API.\n\n## Common Operations\n\n**Search for pages and data sources:**\n\n```bash\ncurl -X POST \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fsearch\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"query\": \"page title\"}'\n```\n\n**Get page:**\n\n```bash\ncurl \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fpages\u002F{page_id}\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\"\n```\n\n**Get page content (blocks):**\n\n```bash\ncurl \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fblocks\u002F{page_id}\u002Fchildren\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\"\n```\n\n**Create page in a data source:**\n\n```bash\ncurl -X POST \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fpages\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\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**Query a data source (database):**\n\n```bash\ncurl -X POST \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fdata_sources\u002F{data_source_id}\u002Fquery\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"filter\": {\"property\": \"Status\", \"select\": {\"equals\": \"Active\"}},\n    \"sorts\": [{\"property\": \"Date\", \"direction\": \"descending\"}]\n  }'\n```\n\n**Create a data source (database):**\n\n```bash\ncurl -X POST \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fdata_sources\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"parent\": {\"page_id\": \"xxx\"},\n    \"title\": [{\"text\": {\"content\": \"My Database\"}}],\n    \"properties\": {\n      \"Name\": {\"title\": {}},\n      \"Status\": {\"select\": {\"options\": [{\"name\": \"Todo\"}, {\"name\": \"Done\"}]}},\n      \"Date\": {\"date\": {}}\n    }\n  }'\n```\n\n**Update page properties:**\n\n```bash\ncurl -X PATCH \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fpages\u002F{page_id}\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"properties\": {\"Status\": {\"select\": {\"name\": \"Done\"}}}}'\n```\n\n**Add blocks to page:**\n\n```bash\ncurl -X PATCH \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fblocks\u002F{page_id}\u002Fchildren\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"children\": [\n      {\"object\": \"block\", \"type\": \"paragraph\", \"paragraph\": {\"rich_text\": [{\"text\": {\"content\": \"Hello\"}}]}}\n    ]\n  }'\n```\n\n## Property Types\n\nCommon property formats for database items:\n\n- **Title:** `{\"title\": [{\"text\": {\"content\": \"...\"}}]}`\n- **Rich text:** `{\"rich_text\": [{\"text\": {\"content\": \"...\"}}]}`\n- **Select:** `{\"select\": {\"name\": \"Option\"}}`\n- **Multi-select:** `{\"multi_select\": [{\"name\": \"A\"}, {\"name\": \"B\"}]}`\n- **Date:** `{\"date\": {\"start\": \"2024-01-15\", \"end\": \"2024-01-16\"}}`\n- **Checkbox:** `{\"checkbox\": true}`\n- **Number:** `{\"number\": 42}`\n- **URL:** `{\"url\": \"https:\u002F\u002F...\"}`\n- **Email:** `{\"email\": \"a@b.com\"}`\n- **Relation:** `{\"relation\": [{\"id\": \"page_id\"}]}`\n\n## Key Differences in 2025-09-03\n\n- **Databases → Data Sources:** Use `\u002Fdata_sources\u002F` endpoints for queries and retrieval\n- **Two IDs:** Each database now has both a `database_id` and a `data_source_id`\n  - Use `database_id` when creating pages (`parent: {\"database_id\": \"...\"}`)\n  - Use `data_source_id` when querying (`POST \u002Fv1\u002Fdata_sources\u002F{id}\u002Fquery`)\n- **Search results:** Databases return as `\"object\": \"data_source\"` with their `data_source_id`\n- **Parent in responses:** Pages show `parent.data_source_id` alongside `parent.database_id`\n- **Finding the data_source_id:** Search for the database, or call `GET \u002Fv1\u002Fdata_sources\u002F{data_source_id}`\n\n## Notes\n\n- Page\u002Fdatabase IDs are UUIDs (with or without dashes)\n- The API cannot set database view filters — that's UI-only\n- Rate limit: ~3 requests\u002Fsecond average\n- Use `is_inline: true` when creating data sources to embed them in pages\n",{"data":32,"body":40},{"name":4,"description":6,"homepage":33,"metadata":34},"https:\u002F\u002Fdevelopers.notion.com",{"openclaw":35},{"emoji":36,"requires":37,"primaryEnv":39},"📝",{"env":38},[39],"NOTION_API_KEY",{"type":41,"children":42},"root",[43,50,56,63,108,178,187,193,198,347,378,384,392,528,536,613,621,698,706,891,899,1053,1061,1255,1263,1395,1403,1564,1570,1575,1730,1736,1884,1890,1920],{"type":44,"tag":45,"props":46,"children":47},"element","h1",{"id":4},[48],{"type":49,"value":4},"text",{"type":44,"tag":51,"props":52,"children":53},"p",{},[54],{"type":49,"value":55},"Use the Notion API to create\u002Fread\u002Fupdate pages, data sources (databases), and blocks.",{"type":44,"tag":57,"props":58,"children":60},"h2",{"id":59},"setup",[61],{"type":49,"value":62},"Setup",{"type":44,"tag":64,"props":65,"children":66},"ol",{},[67,81,103],{"type":44,"tag":68,"props":69,"children":70},"li",{},[71,73],{"type":49,"value":72},"Create an integration at ",{"type":44,"tag":74,"props":75,"children":79},"a",{"href":76,"rel":77},"https:\u002F\u002Fnotion.so\u002Fmy-integrations",[78],"nofollow",[80],{"type":49,"value":76},{"type":44,"tag":68,"props":82,"children":83},{},[84,86,93,95,101],{"type":49,"value":85},"Copy the API key (starts with ",{"type":44,"tag":87,"props":88,"children":90},"code",{"className":89},[],[91],{"type":49,"value":92},"ntn_",{"type":49,"value":94}," or ",{"type":44,"tag":87,"props":96,"children":98},{"className":97},[],[99],{"type":49,"value":100},"secret_",{"type":49,"value":102},")",{"type":44,"tag":68,"props":104,"children":105},{},[106],{"type":49,"value":107},"Store it:",{"type":44,"tag":109,"props":110,"children":115},"pre",{"className":111,"code":112,"language":113,"meta":114,"style":114},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","mkdir -p ~\u002F.config\u002Fnotion\necho \"ntn_your_key_here\" > ~\u002F.config\u002Fnotion\u002Fapi_key\n","bash","",[116],{"type":44,"tag":87,"props":117,"children":118},{"__ignoreMap":114},[119,142],{"type":44,"tag":120,"props":121,"children":124},"span",{"class":122,"line":123},"line",1,[125,131,137],{"type":44,"tag":120,"props":126,"children":128},{"style":127},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[129],{"type":49,"value":130},"mkdir",{"type":44,"tag":120,"props":132,"children":134},{"style":133},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[135],{"type":49,"value":136}," -p",{"type":44,"tag":120,"props":138,"children":139},{"style":133},[140],{"type":49,"value":141}," ~\u002F.config\u002Fnotion\n",{"type":44,"tag":120,"props":143,"children":145},{"class":122,"line":144},2,[146,152,158,163,168,173],{"type":44,"tag":120,"props":147,"children":149},{"style":148},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[150],{"type":49,"value":151},"echo",{"type":44,"tag":120,"props":153,"children":155},{"style":154},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[156],{"type":49,"value":157}," \"",{"type":44,"tag":120,"props":159,"children":160},{"style":133},[161],{"type":49,"value":162},"ntn_your_key_here",{"type":44,"tag":120,"props":164,"children":165},{"style":154},[166],{"type":49,"value":167},"\"",{"type":44,"tag":120,"props":169,"children":170},{"style":154},[171],{"type":49,"value":172}," >",{"type":44,"tag":120,"props":174,"children":175},{"style":133},[176],{"type":49,"value":177}," ~\u002F.config\u002Fnotion\u002Fapi_key\n",{"type":44,"tag":64,"props":179,"children":181},{"start":180},4,[182],{"type":44,"tag":68,"props":183,"children":184},{},[185],{"type":49,"value":186},"Share target pages\u002Fdatabases with your integration (click \"...\" → \"Connect to\" → your integration name)",{"type":44,"tag":57,"props":188,"children":190},{"id":189},"api-basics",[191],{"type":49,"value":192},"API Basics",{"type":44,"tag":51,"props":194,"children":195},{},[196],{"type":49,"value":197},"All requests need:",{"type":44,"tag":109,"props":199,"children":201},{"className":111,"code":200,"language":113,"meta":114,"style":114},"NOTION_KEY=$(cat ~\u002F.config\u002Fnotion\u002Fapi_key)\ncurl -X GET \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002F...\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\"\n",[202],{"type":44,"tag":87,"props":203,"children":204},{"__ignoreMap":114},[205,234,270,301,325],{"type":44,"tag":120,"props":206,"children":207},{"class":122,"line":123},[208,214,219,224,229],{"type":44,"tag":120,"props":209,"children":211},{"style":210},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[212],{"type":49,"value":213},"NOTION_KEY",{"type":44,"tag":120,"props":215,"children":216},{"style":154},[217],{"type":49,"value":218},"=$(",{"type":44,"tag":120,"props":220,"children":221},{"style":127},[222],{"type":49,"value":223},"cat",{"type":44,"tag":120,"props":225,"children":226},{"style":133},[227],{"type":49,"value":228}," ~\u002F.config\u002Fnotion\u002Fapi_key",{"type":44,"tag":120,"props":230,"children":231},{"style":154},[232],{"type":49,"value":233},")\n",{"type":44,"tag":120,"props":235,"children":236},{"class":122,"line":144},[237,242,247,252,256,261,265],{"type":44,"tag":120,"props":238,"children":239},{"style":127},[240],{"type":49,"value":241},"curl",{"type":44,"tag":120,"props":243,"children":244},{"style":133},[245],{"type":49,"value":246}," -X",{"type":44,"tag":120,"props":248,"children":249},{"style":133},[250],{"type":49,"value":251}," GET",{"type":44,"tag":120,"props":253,"children":254},{"style":154},[255],{"type":49,"value":157},{"type":44,"tag":120,"props":257,"children":258},{"style":133},[259],{"type":49,"value":260},"https:\u002F\u002Fapi.notion.com\u002Fv1\u002F...",{"type":44,"tag":120,"props":262,"children":263},{"style":154},[264],{"type":49,"value":167},{"type":44,"tag":120,"props":266,"children":267},{"style":210},[268],{"type":49,"value":269}," \\\n",{"type":44,"tag":120,"props":271,"children":273},{"class":122,"line":272},3,[274,279,283,288,293,297],{"type":44,"tag":120,"props":275,"children":276},{"style":133},[277],{"type":49,"value":278},"  -H",{"type":44,"tag":120,"props":280,"children":281},{"style":154},[282],{"type":49,"value":157},{"type":44,"tag":120,"props":284,"children":285},{"style":133},[286],{"type":49,"value":287},"Authorization: Bearer ",{"type":44,"tag":120,"props":289,"children":290},{"style":210},[291],{"type":49,"value":292},"$NOTION_KEY",{"type":44,"tag":120,"props":294,"children":295},{"style":154},[296],{"type":49,"value":167},{"type":44,"tag":120,"props":298,"children":299},{"style":210},[300],{"type":49,"value":269},{"type":44,"tag":120,"props":302,"children":303},{"class":122,"line":180},[304,308,312,317,321],{"type":44,"tag":120,"props":305,"children":306},{"style":133},[307],{"type":49,"value":278},{"type":44,"tag":120,"props":309,"children":310},{"style":154},[311],{"type":49,"value":157},{"type":44,"tag":120,"props":313,"children":314},{"style":133},[315],{"type":49,"value":316},"Notion-Version: 2025-09-03",{"type":44,"tag":120,"props":318,"children":319},{"style":154},[320],{"type":49,"value":167},{"type":44,"tag":120,"props":322,"children":323},{"style":210},[324],{"type":49,"value":269},{"type":44,"tag":120,"props":326,"children":328},{"class":122,"line":327},5,[329,333,337,342],{"type":44,"tag":120,"props":330,"children":331},{"style":133},[332],{"type":49,"value":278},{"type":44,"tag":120,"props":334,"children":335},{"style":154},[336],{"type":49,"value":157},{"type":44,"tag":120,"props":338,"children":339},{"style":133},[340],{"type":49,"value":341},"Content-Type: application\u002Fjson",{"type":44,"tag":120,"props":343,"children":344},{"style":154},[345],{"type":49,"value":346},"\"\n",{"type":44,"tag":348,"props":349,"children":350},"blockquote",{},[351],{"type":44,"tag":51,"props":352,"children":353},{},[354,360,362,368,370,376],{"type":44,"tag":355,"props":356,"children":357},"strong",{},[358],{"type":49,"value":359},"Note:",{"type":49,"value":361}," The ",{"type":44,"tag":87,"props":363,"children":365},{"className":364},[],[366],{"type":49,"value":367},"Notion-Version",{"type":49,"value":369}," header is required. This skill uses ",{"type":44,"tag":87,"props":371,"children":373},{"className":372},[],[374],{"type":49,"value":375},"2025-09-03",{"type":49,"value":377}," (latest). In this version, databases are called \"data sources\" in the API.",{"type":44,"tag":57,"props":379,"children":381},{"id":380},"common-operations",[382],{"type":49,"value":383},"Common Operations",{"type":44,"tag":51,"props":385,"children":386},{},[387],{"type":44,"tag":355,"props":388,"children":389},{},[390],{"type":49,"value":391},"Search for pages and data sources:",{"type":44,"tag":109,"props":393,"children":395},{"className":111,"code":394,"language":113,"meta":114,"style":114},"curl -X POST \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fsearch\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"query\": \"page title\"}'\n",[396],{"type":44,"tag":87,"props":397,"children":398},{"__ignoreMap":114},[399,432,459,482,505],{"type":44,"tag":120,"props":400,"children":401},{"class":122,"line":123},[402,406,410,415,419,424,428],{"type":44,"tag":120,"props":403,"children":404},{"style":127},[405],{"type":49,"value":241},{"type":44,"tag":120,"props":407,"children":408},{"style":133},[409],{"type":49,"value":246},{"type":44,"tag":120,"props":411,"children":412},{"style":133},[413],{"type":49,"value":414}," POST",{"type":44,"tag":120,"props":416,"children":417},{"style":154},[418],{"type":49,"value":157},{"type":44,"tag":120,"props":420,"children":421},{"style":133},[422],{"type":49,"value":423},"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fsearch",{"type":44,"tag":120,"props":425,"children":426},{"style":154},[427],{"type":49,"value":167},{"type":44,"tag":120,"props":429,"children":430},{"style":210},[431],{"type":49,"value":269},{"type":44,"tag":120,"props":433,"children":434},{"class":122,"line":144},[435,439,443,447,451,455],{"type":44,"tag":120,"props":436,"children":437},{"style":133},[438],{"type":49,"value":278},{"type":44,"tag":120,"props":440,"children":441},{"style":154},[442],{"type":49,"value":157},{"type":44,"tag":120,"props":444,"children":445},{"style":133},[446],{"type":49,"value":287},{"type":44,"tag":120,"props":448,"children":449},{"style":210},[450],{"type":49,"value":292},{"type":44,"tag":120,"props":452,"children":453},{"style":154},[454],{"type":49,"value":167},{"type":44,"tag":120,"props":456,"children":457},{"style":210},[458],{"type":49,"value":269},{"type":44,"tag":120,"props":460,"children":461},{"class":122,"line":272},[462,466,470,474,478],{"type":44,"tag":120,"props":463,"children":464},{"style":133},[465],{"type":49,"value":278},{"type":44,"tag":120,"props":467,"children":468},{"style":154},[469],{"type":49,"value":157},{"type":44,"tag":120,"props":471,"children":472},{"style":133},[473],{"type":49,"value":316},{"type":44,"tag":120,"props":475,"children":476},{"style":154},[477],{"type":49,"value":167},{"type":44,"tag":120,"props":479,"children":480},{"style":210},[481],{"type":49,"value":269},{"type":44,"tag":120,"props":483,"children":484},{"class":122,"line":180},[485,489,493,497,501],{"type":44,"tag":120,"props":486,"children":487},{"style":133},[488],{"type":49,"value":278},{"type":44,"tag":120,"props":490,"children":491},{"style":154},[492],{"type":49,"value":157},{"type":44,"tag":120,"props":494,"children":495},{"style":133},[496],{"type":49,"value":341},{"type":44,"tag":120,"props":498,"children":499},{"style":154},[500],{"type":49,"value":167},{"type":44,"tag":120,"props":502,"children":503},{"style":210},[504],{"type":49,"value":269},{"type":44,"tag":120,"props":506,"children":507},{"class":122,"line":327},[508,513,518,523],{"type":44,"tag":120,"props":509,"children":510},{"style":133},[511],{"type":49,"value":512},"  -d",{"type":44,"tag":120,"props":514,"children":515},{"style":154},[516],{"type":49,"value":517}," '",{"type":44,"tag":120,"props":519,"children":520},{"style":133},[521],{"type":49,"value":522},"{\"query\": \"page title\"}",{"type":44,"tag":120,"props":524,"children":525},{"style":154},[526],{"type":49,"value":527},"'\n",{"type":44,"tag":51,"props":529,"children":530},{},[531],{"type":44,"tag":355,"props":532,"children":533},{},[534],{"type":49,"value":535},"Get page:",{"type":44,"tag":109,"props":537,"children":539},{"className":111,"code":538,"language":113,"meta":114,"style":114},"curl \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fpages\u002F{page_id}\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\"\n",[540],{"type":44,"tag":87,"props":541,"children":542},{"__ignoreMap":114},[543,567,594],{"type":44,"tag":120,"props":544,"children":545},{"class":122,"line":123},[546,550,554,559,563],{"type":44,"tag":120,"props":547,"children":548},{"style":127},[549],{"type":49,"value":241},{"type":44,"tag":120,"props":551,"children":552},{"style":154},[553],{"type":49,"value":157},{"type":44,"tag":120,"props":555,"children":556},{"style":133},[557],{"type":49,"value":558},"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fpages\u002F{page_id}",{"type":44,"tag":120,"props":560,"children":561},{"style":154},[562],{"type":49,"value":167},{"type":44,"tag":120,"props":564,"children":565},{"style":210},[566],{"type":49,"value":269},{"type":44,"tag":120,"props":568,"children":569},{"class":122,"line":144},[570,574,578,582,586,590],{"type":44,"tag":120,"props":571,"children":572},{"style":133},[573],{"type":49,"value":278},{"type":44,"tag":120,"props":575,"children":576},{"style":154},[577],{"type":49,"value":157},{"type":44,"tag":120,"props":579,"children":580},{"style":133},[581],{"type":49,"value":287},{"type":44,"tag":120,"props":583,"children":584},{"style":210},[585],{"type":49,"value":292},{"type":44,"tag":120,"props":587,"children":588},{"style":154},[589],{"type":49,"value":167},{"type":44,"tag":120,"props":591,"children":592},{"style":210},[593],{"type":49,"value":269},{"type":44,"tag":120,"props":595,"children":596},{"class":122,"line":272},[597,601,605,609],{"type":44,"tag":120,"props":598,"children":599},{"style":133},[600],{"type":49,"value":278},{"type":44,"tag":120,"props":602,"children":603},{"style":154},[604],{"type":49,"value":157},{"type":44,"tag":120,"props":606,"children":607},{"style":133},[608],{"type":49,"value":316},{"type":44,"tag":120,"props":610,"children":611},{"style":154},[612],{"type":49,"value":346},{"type":44,"tag":51,"props":614,"children":615},{},[616],{"type":44,"tag":355,"props":617,"children":618},{},[619],{"type":49,"value":620},"Get page content (blocks):",{"type":44,"tag":109,"props":622,"children":624},{"className":111,"code":623,"language":113,"meta":114,"style":114},"curl \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fblocks\u002F{page_id}\u002Fchildren\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\"\n",[625],{"type":44,"tag":87,"props":626,"children":627},{"__ignoreMap":114},[628,652,679],{"type":44,"tag":120,"props":629,"children":630},{"class":122,"line":123},[631,635,639,644,648],{"type":44,"tag":120,"props":632,"children":633},{"style":127},[634],{"type":49,"value":241},{"type":44,"tag":120,"props":636,"children":637},{"style":154},[638],{"type":49,"value":157},{"type":44,"tag":120,"props":640,"children":641},{"style":133},[642],{"type":49,"value":643},"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fblocks\u002F{page_id}\u002Fchildren",{"type":44,"tag":120,"props":645,"children":646},{"style":154},[647],{"type":49,"value":167},{"type":44,"tag":120,"props":649,"children":650},{"style":210},[651],{"type":49,"value":269},{"type":44,"tag":120,"props":653,"children":654},{"class":122,"line":144},[655,659,663,667,671,675],{"type":44,"tag":120,"props":656,"children":657},{"style":133},[658],{"type":49,"value":278},{"type":44,"tag":120,"props":660,"children":661},{"style":154},[662],{"type":49,"value":157},{"type":44,"tag":120,"props":664,"children":665},{"style":133},[666],{"type":49,"value":287},{"type":44,"tag":120,"props":668,"children":669},{"style":210},[670],{"type":49,"value":292},{"type":44,"tag":120,"props":672,"children":673},{"style":154},[674],{"type":49,"value":167},{"type":44,"tag":120,"props":676,"children":677},{"style":210},[678],{"type":49,"value":269},{"type":44,"tag":120,"props":680,"children":681},{"class":122,"line":272},[682,686,690,694],{"type":44,"tag":120,"props":683,"children":684},{"style":133},[685],{"type":49,"value":278},{"type":44,"tag":120,"props":687,"children":688},{"style":154},[689],{"type":49,"value":157},{"type":44,"tag":120,"props":691,"children":692},{"style":133},[693],{"type":49,"value":316},{"type":44,"tag":120,"props":695,"children":696},{"style":154},[697],{"type":49,"value":346},{"type":44,"tag":51,"props":699,"children":700},{},[701],{"type":44,"tag":355,"props":702,"children":703},{},[704],{"type":49,"value":705},"Create page in a data source:",{"type":44,"tag":109,"props":707,"children":709},{"className":111,"code":708,"language":113,"meta":114,"style":114},"curl -X POST \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fpages\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"parent\": {\"database_id\": \"xxx\"},\n    \"properties\": {\n      \"Name\": {\"title\": [{\"text\": {\"content\": \"New Item\"}}]},\n      \"Status\": {\"select\": {\"name\": \"Todo\"}}\n    }\n  }'\n",[710],{"type":44,"tag":87,"props":711,"children":712},{"__ignoreMap":114},[713,745,772,795,818,834,843,852,861,869,878],{"type":44,"tag":120,"props":714,"children":715},{"class":122,"line":123},[716,720,724,728,732,737,741],{"type":44,"tag":120,"props":717,"children":718},{"style":127},[719],{"type":49,"value":241},{"type":44,"tag":120,"props":721,"children":722},{"style":133},[723],{"type":49,"value":246},{"type":44,"tag":120,"props":725,"children":726},{"style":133},[727],{"type":49,"value":414},{"type":44,"tag":120,"props":729,"children":730},{"style":154},[731],{"type":49,"value":157},{"type":44,"tag":120,"props":733,"children":734},{"style":133},[735],{"type":49,"value":736},"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fpages",{"type":44,"tag":120,"props":738,"children":739},{"style":154},[740],{"type":49,"value":167},{"type":44,"tag":120,"props":742,"children":743},{"style":210},[744],{"type":49,"value":269},{"type":44,"tag":120,"props":746,"children":747},{"class":122,"line":144},[748,752,756,760,764,768],{"type":44,"tag":120,"props":749,"children":750},{"style":133},[751],{"type":49,"value":278},{"type":44,"tag":120,"props":753,"children":754},{"style":154},[755],{"type":49,"value":157},{"type":44,"tag":120,"props":757,"children":758},{"style":133},[759],{"type":49,"value":287},{"type":44,"tag":120,"props":761,"children":762},{"style":210},[763],{"type":49,"value":292},{"type":44,"tag":120,"props":765,"children":766},{"style":154},[767],{"type":49,"value":167},{"type":44,"tag":120,"props":769,"children":770},{"style":210},[771],{"type":49,"value":269},{"type":44,"tag":120,"props":773,"children":774},{"class":122,"line":272},[775,779,783,787,791],{"type":44,"tag":120,"props":776,"children":777},{"style":133},[778],{"type":49,"value":278},{"type":44,"tag":120,"props":780,"children":781},{"style":154},[782],{"type":49,"value":157},{"type":44,"tag":120,"props":784,"children":785},{"style":133},[786],{"type":49,"value":316},{"type":44,"tag":120,"props":788,"children":789},{"style":154},[790],{"type":49,"value":167},{"type":44,"tag":120,"props":792,"children":793},{"style":210},[794],{"type":49,"value":269},{"type":44,"tag":120,"props":796,"children":797},{"class":122,"line":180},[798,802,806,810,814],{"type":44,"tag":120,"props":799,"children":800},{"style":133},[801],{"type":49,"value":278},{"type":44,"tag":120,"props":803,"children":804},{"style":154},[805],{"type":49,"value":157},{"type":44,"tag":120,"props":807,"children":808},{"style":133},[809],{"type":49,"value":341},{"type":44,"tag":120,"props":811,"children":812},{"style":154},[813],{"type":49,"value":167},{"type":44,"tag":120,"props":815,"children":816},{"style":210},[817],{"type":49,"value":269},{"type":44,"tag":120,"props":819,"children":820},{"class":122,"line":327},[821,825,829],{"type":44,"tag":120,"props":822,"children":823},{"style":133},[824],{"type":49,"value":512},{"type":44,"tag":120,"props":826,"children":827},{"style":154},[828],{"type":49,"value":517},{"type":44,"tag":120,"props":830,"children":831},{"style":133},[832],{"type":49,"value":833},"{\n",{"type":44,"tag":120,"props":835,"children":837},{"class":122,"line":836},6,[838],{"type":44,"tag":120,"props":839,"children":840},{"style":133},[841],{"type":49,"value":842},"    \"parent\": {\"database_id\": \"xxx\"},\n",{"type":44,"tag":120,"props":844,"children":846},{"class":122,"line":845},7,[847],{"type":44,"tag":120,"props":848,"children":849},{"style":133},[850],{"type":49,"value":851},"    \"properties\": {\n",{"type":44,"tag":120,"props":853,"children":855},{"class":122,"line":854},8,[856],{"type":44,"tag":120,"props":857,"children":858},{"style":133},[859],{"type":49,"value":860},"      \"Name\": {\"title\": [{\"text\": {\"content\": \"New Item\"}}]},\n",{"type":44,"tag":120,"props":862,"children":863},{"class":122,"line":25},[864],{"type":44,"tag":120,"props":865,"children":866},{"style":133},[867],{"type":49,"value":868},"      \"Status\": {\"select\": {\"name\": \"Todo\"}}\n",{"type":44,"tag":120,"props":870,"children":872},{"class":122,"line":871},10,[873],{"type":44,"tag":120,"props":874,"children":875},{"style":133},[876],{"type":49,"value":877},"    }\n",{"type":44,"tag":120,"props":879,"children":881},{"class":122,"line":880},11,[882,887],{"type":44,"tag":120,"props":883,"children":884},{"style":133},[885],{"type":49,"value":886},"  }",{"type":44,"tag":120,"props":888,"children":889},{"style":154},[890],{"type":49,"value":527},{"type":44,"tag":51,"props":892,"children":893},{},[894],{"type":44,"tag":355,"props":895,"children":896},{},[897],{"type":49,"value":898},"Query a data source (database):",{"type":44,"tag":109,"props":900,"children":902},{"className":111,"code":901,"language":113,"meta":114,"style":114},"curl -X POST \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fdata_sources\u002F{data_source_id}\u002Fquery\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"filter\": {\"property\": \"Status\", \"select\": {\"equals\": \"Active\"}},\n    \"sorts\": [{\"property\": \"Date\", \"direction\": \"descending\"}]\n  }'\n",[903],{"type":44,"tag":87,"props":904,"children":905},{"__ignoreMap":114},[906,938,965,988,1011,1026,1034,1042],{"type":44,"tag":120,"props":907,"children":908},{"class":122,"line":123},[909,913,917,921,925,930,934],{"type":44,"tag":120,"props":910,"children":911},{"style":127},[912],{"type":49,"value":241},{"type":44,"tag":120,"props":914,"children":915},{"style":133},[916],{"type":49,"value":246},{"type":44,"tag":120,"props":918,"children":919},{"style":133},[920],{"type":49,"value":414},{"type":44,"tag":120,"props":922,"children":923},{"style":154},[924],{"type":49,"value":157},{"type":44,"tag":120,"props":926,"children":927},{"style":133},[928],{"type":49,"value":929},"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fdata_sources\u002F{data_source_id}\u002Fquery",{"type":44,"tag":120,"props":931,"children":932},{"style":154},[933],{"type":49,"value":167},{"type":44,"tag":120,"props":935,"children":936},{"style":210},[937],{"type":49,"value":269},{"type":44,"tag":120,"props":939,"children":940},{"class":122,"line":144},[941,945,949,953,957,961],{"type":44,"tag":120,"props":942,"children":943},{"style":133},[944],{"type":49,"value":278},{"type":44,"tag":120,"props":946,"children":947},{"style":154},[948],{"type":49,"value":157},{"type":44,"tag":120,"props":950,"children":951},{"style":133},[952],{"type":49,"value":287},{"type":44,"tag":120,"props":954,"children":955},{"style":210},[956],{"type":49,"value":292},{"type":44,"tag":120,"props":958,"children":959},{"style":154},[960],{"type":49,"value":167},{"type":44,"tag":120,"props":962,"children":963},{"style":210},[964],{"type":49,"value":269},{"type":44,"tag":120,"props":966,"children":967},{"class":122,"line":272},[968,972,976,980,984],{"type":44,"tag":120,"props":969,"children":970},{"style":133},[971],{"type":49,"value":278},{"type":44,"tag":120,"props":973,"children":974},{"style":154},[975],{"type":49,"value":157},{"type":44,"tag":120,"props":977,"children":978},{"style":133},[979],{"type":49,"value":316},{"type":44,"tag":120,"props":981,"children":982},{"style":154},[983],{"type":49,"value":167},{"type":44,"tag":120,"props":985,"children":986},{"style":210},[987],{"type":49,"value":269},{"type":44,"tag":120,"props":989,"children":990},{"class":122,"line":180},[991,995,999,1003,1007],{"type":44,"tag":120,"props":992,"children":993},{"style":133},[994],{"type":49,"value":278},{"type":44,"tag":120,"props":996,"children":997},{"style":154},[998],{"type":49,"value":157},{"type":44,"tag":120,"props":1000,"children":1001},{"style":133},[1002],{"type":49,"value":341},{"type":44,"tag":120,"props":1004,"children":1005},{"style":154},[1006],{"type":49,"value":167},{"type":44,"tag":120,"props":1008,"children":1009},{"style":210},[1010],{"type":49,"value":269},{"type":44,"tag":120,"props":1012,"children":1013},{"class":122,"line":327},[1014,1018,1022],{"type":44,"tag":120,"props":1015,"children":1016},{"style":133},[1017],{"type":49,"value":512},{"type":44,"tag":120,"props":1019,"children":1020},{"style":154},[1021],{"type":49,"value":517},{"type":44,"tag":120,"props":1023,"children":1024},{"style":133},[1025],{"type":49,"value":833},{"type":44,"tag":120,"props":1027,"children":1028},{"class":122,"line":836},[1029],{"type":44,"tag":120,"props":1030,"children":1031},{"style":133},[1032],{"type":49,"value":1033},"    \"filter\": {\"property\": \"Status\", \"select\": {\"equals\": \"Active\"}},\n",{"type":44,"tag":120,"props":1035,"children":1036},{"class":122,"line":845},[1037],{"type":44,"tag":120,"props":1038,"children":1039},{"style":133},[1040],{"type":49,"value":1041},"    \"sorts\": [{\"property\": \"Date\", \"direction\": \"descending\"}]\n",{"type":44,"tag":120,"props":1043,"children":1044},{"class":122,"line":854},[1045,1049],{"type":44,"tag":120,"props":1046,"children":1047},{"style":133},[1048],{"type":49,"value":886},{"type":44,"tag":120,"props":1050,"children":1051},{"style":154},[1052],{"type":49,"value":527},{"type":44,"tag":51,"props":1054,"children":1055},{},[1056],{"type":44,"tag":355,"props":1057,"children":1058},{},[1059],{"type":49,"value":1060},"Create a data source (database):",{"type":44,"tag":109,"props":1062,"children":1064},{"className":111,"code":1063,"language":113,"meta":114,"style":114},"curl -X POST \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fdata_sources\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"parent\": {\"page_id\": \"xxx\"},\n    \"title\": [{\"text\": {\"content\": \"My Database\"}}],\n    \"properties\": {\n      \"Name\": {\"title\": {}},\n      \"Status\": {\"select\": {\"options\": [{\"name\": \"Todo\"}, {\"name\": \"Done\"}]}},\n      \"Date\": {\"date\": {}}\n    }\n  }'\n",[1065],{"type":44,"tag":87,"props":1066,"children":1067},{"__ignoreMap":114},[1068,1100,1127,1150,1173,1188,1196,1204,1211,1219,1227,1235,1243],{"type":44,"tag":120,"props":1069,"children":1070},{"class":122,"line":123},[1071,1075,1079,1083,1087,1092,1096],{"type":44,"tag":120,"props":1072,"children":1073},{"style":127},[1074],{"type":49,"value":241},{"type":44,"tag":120,"props":1076,"children":1077},{"style":133},[1078],{"type":49,"value":246},{"type":44,"tag":120,"props":1080,"children":1081},{"style":133},[1082],{"type":49,"value":414},{"type":44,"tag":120,"props":1084,"children":1085},{"style":154},[1086],{"type":49,"value":157},{"type":44,"tag":120,"props":1088,"children":1089},{"style":133},[1090],{"type":49,"value":1091},"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fdata_sources",{"type":44,"tag":120,"props":1093,"children":1094},{"style":154},[1095],{"type":49,"value":167},{"type":44,"tag":120,"props":1097,"children":1098},{"style":210},[1099],{"type":49,"value":269},{"type":44,"tag":120,"props":1101,"children":1102},{"class":122,"line":144},[1103,1107,1111,1115,1119,1123],{"type":44,"tag":120,"props":1104,"children":1105},{"style":133},[1106],{"type":49,"value":278},{"type":44,"tag":120,"props":1108,"children":1109},{"style":154},[1110],{"type":49,"value":157},{"type":44,"tag":120,"props":1112,"children":1113},{"style":133},[1114],{"type":49,"value":287},{"type":44,"tag":120,"props":1116,"children":1117},{"style":210},[1118],{"type":49,"value":292},{"type":44,"tag":120,"props":1120,"children":1121},{"style":154},[1122],{"type":49,"value":167},{"type":44,"tag":120,"props":1124,"children":1125},{"style":210},[1126],{"type":49,"value":269},{"type":44,"tag":120,"props":1128,"children":1129},{"class":122,"line":272},[1130,1134,1138,1142,1146],{"type":44,"tag":120,"props":1131,"children":1132},{"style":133},[1133],{"type":49,"value":278},{"type":44,"tag":120,"props":1135,"children":1136},{"style":154},[1137],{"type":49,"value":157},{"type":44,"tag":120,"props":1139,"children":1140},{"style":133},[1141],{"type":49,"value":316},{"type":44,"tag":120,"props":1143,"children":1144},{"style":154},[1145],{"type":49,"value":167},{"type":44,"tag":120,"props":1147,"children":1148},{"style":210},[1149],{"type":49,"value":269},{"type":44,"tag":120,"props":1151,"children":1152},{"class":122,"line":180},[1153,1157,1161,1165,1169],{"type":44,"tag":120,"props":1154,"children":1155},{"style":133},[1156],{"type":49,"value":278},{"type":44,"tag":120,"props":1158,"children":1159},{"style":154},[1160],{"type":49,"value":157},{"type":44,"tag":120,"props":1162,"children":1163},{"style":133},[1164],{"type":49,"value":341},{"type":44,"tag":120,"props":1166,"children":1167},{"style":154},[1168],{"type":49,"value":167},{"type":44,"tag":120,"props":1170,"children":1171},{"style":210},[1172],{"type":49,"value":269},{"type":44,"tag":120,"props":1174,"children":1175},{"class":122,"line":327},[1176,1180,1184],{"type":44,"tag":120,"props":1177,"children":1178},{"style":133},[1179],{"type":49,"value":512},{"type":44,"tag":120,"props":1181,"children":1182},{"style":154},[1183],{"type":49,"value":517},{"type":44,"tag":120,"props":1185,"children":1186},{"style":133},[1187],{"type":49,"value":833},{"type":44,"tag":120,"props":1189,"children":1190},{"class":122,"line":836},[1191],{"type":44,"tag":120,"props":1192,"children":1193},{"style":133},[1194],{"type":49,"value":1195},"    \"parent\": {\"page_id\": \"xxx\"},\n",{"type":44,"tag":120,"props":1197,"children":1198},{"class":122,"line":845},[1199],{"type":44,"tag":120,"props":1200,"children":1201},{"style":133},[1202],{"type":49,"value":1203},"    \"title\": [{\"text\": {\"content\": \"My Database\"}}],\n",{"type":44,"tag":120,"props":1205,"children":1206},{"class":122,"line":854},[1207],{"type":44,"tag":120,"props":1208,"children":1209},{"style":133},[1210],{"type":49,"value":851},{"type":44,"tag":120,"props":1212,"children":1213},{"class":122,"line":25},[1214],{"type":44,"tag":120,"props":1215,"children":1216},{"style":133},[1217],{"type":49,"value":1218},"      \"Name\": {\"title\": {}},\n",{"type":44,"tag":120,"props":1220,"children":1221},{"class":122,"line":871},[1222],{"type":44,"tag":120,"props":1223,"children":1224},{"style":133},[1225],{"type":49,"value":1226},"      \"Status\": {\"select\": {\"options\": [{\"name\": \"Todo\"}, {\"name\": \"Done\"}]}},\n",{"type":44,"tag":120,"props":1228,"children":1229},{"class":122,"line":880},[1230],{"type":44,"tag":120,"props":1231,"children":1232},{"style":133},[1233],{"type":49,"value":1234},"      \"Date\": {\"date\": {}}\n",{"type":44,"tag":120,"props":1236,"children":1238},{"class":122,"line":1237},12,[1239],{"type":44,"tag":120,"props":1240,"children":1241},{"style":133},[1242],{"type":49,"value":877},{"type":44,"tag":120,"props":1244,"children":1246},{"class":122,"line":1245},13,[1247,1251],{"type":44,"tag":120,"props":1248,"children":1249},{"style":133},[1250],{"type":49,"value":886},{"type":44,"tag":120,"props":1252,"children":1253},{"style":154},[1254],{"type":49,"value":527},{"type":44,"tag":51,"props":1256,"children":1257},{},[1258],{"type":44,"tag":355,"props":1259,"children":1260},{},[1261],{"type":49,"value":1262},"Update page properties:",{"type":44,"tag":109,"props":1264,"children":1266},{"className":111,"code":1265,"language":113,"meta":114,"style":114},"curl -X PATCH \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fpages\u002F{page_id}\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"properties\": {\"Status\": {\"select\": {\"name\": \"Done\"}}}}'\n",[1267],{"type":44,"tag":87,"props":1268,"children":1269},{"__ignoreMap":114},[1270,1302,1329,1352,1375],{"type":44,"tag":120,"props":1271,"children":1272},{"class":122,"line":123},[1273,1277,1281,1286,1290,1294,1298],{"type":44,"tag":120,"props":1274,"children":1275},{"style":127},[1276],{"type":49,"value":241},{"type":44,"tag":120,"props":1278,"children":1279},{"style":133},[1280],{"type":49,"value":246},{"type":44,"tag":120,"props":1282,"children":1283},{"style":133},[1284],{"type":49,"value":1285}," PATCH",{"type":44,"tag":120,"props":1287,"children":1288},{"style":154},[1289],{"type":49,"value":157},{"type":44,"tag":120,"props":1291,"children":1292},{"style":133},[1293],{"type":49,"value":558},{"type":44,"tag":120,"props":1295,"children":1296},{"style":154},[1297],{"type":49,"value":167},{"type":44,"tag":120,"props":1299,"children":1300},{"style":210},[1301],{"type":49,"value":269},{"type":44,"tag":120,"props":1303,"children":1304},{"class":122,"line":144},[1305,1309,1313,1317,1321,1325],{"type":44,"tag":120,"props":1306,"children":1307},{"style":133},[1308],{"type":49,"value":278},{"type":44,"tag":120,"props":1310,"children":1311},{"style":154},[1312],{"type":49,"value":157},{"type":44,"tag":120,"props":1314,"children":1315},{"style":133},[1316],{"type":49,"value":287},{"type":44,"tag":120,"props":1318,"children":1319},{"style":210},[1320],{"type":49,"value":292},{"type":44,"tag":120,"props":1322,"children":1323},{"style":154},[1324],{"type":49,"value":167},{"type":44,"tag":120,"props":1326,"children":1327},{"style":210},[1328],{"type":49,"value":269},{"type":44,"tag":120,"props":1330,"children":1331},{"class":122,"line":272},[1332,1336,1340,1344,1348],{"type":44,"tag":120,"props":1333,"children":1334},{"style":133},[1335],{"type":49,"value":278},{"type":44,"tag":120,"props":1337,"children":1338},{"style":154},[1339],{"type":49,"value":157},{"type":44,"tag":120,"props":1341,"children":1342},{"style":133},[1343],{"type":49,"value":316},{"type":44,"tag":120,"props":1345,"children":1346},{"style":154},[1347],{"type":49,"value":167},{"type":44,"tag":120,"props":1349,"children":1350},{"style":210},[1351],{"type":49,"value":269},{"type":44,"tag":120,"props":1353,"children":1354},{"class":122,"line":180},[1355,1359,1363,1367,1371],{"type":44,"tag":120,"props":1356,"children":1357},{"style":133},[1358],{"type":49,"value":278},{"type":44,"tag":120,"props":1360,"children":1361},{"style":154},[1362],{"type":49,"value":157},{"type":44,"tag":120,"props":1364,"children":1365},{"style":133},[1366],{"type":49,"value":341},{"type":44,"tag":120,"props":1368,"children":1369},{"style":154},[1370],{"type":49,"value":167},{"type":44,"tag":120,"props":1372,"children":1373},{"style":210},[1374],{"type":49,"value":269},{"type":44,"tag":120,"props":1376,"children":1377},{"class":122,"line":327},[1378,1382,1386,1391],{"type":44,"tag":120,"props":1379,"children":1380},{"style":133},[1381],{"type":49,"value":512},{"type":44,"tag":120,"props":1383,"children":1384},{"style":154},[1385],{"type":49,"value":517},{"type":44,"tag":120,"props":1387,"children":1388},{"style":133},[1389],{"type":49,"value":1390},"{\"properties\": {\"Status\": {\"select\": {\"name\": \"Done\"}}}}",{"type":44,"tag":120,"props":1392,"children":1393},{"style":154},[1394],{"type":49,"value":527},{"type":44,"tag":51,"props":1396,"children":1397},{},[1398],{"type":44,"tag":355,"props":1399,"children":1400},{},[1401],{"type":49,"value":1402},"Add blocks to page:",{"type":44,"tag":109,"props":1404,"children":1406},{"className":111,"code":1405,"language":113,"meta":114,"style":114},"curl -X PATCH \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fblocks\u002F{page_id}\u002Fchildren\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"children\": [\n      {\"object\": \"block\", \"type\": \"paragraph\", \"paragraph\": {\"rich_text\": [{\"text\": {\"content\": \"Hello\"}}]}}\n    ]\n  }'\n",[1407],{"type":44,"tag":87,"props":1408,"children":1409},{"__ignoreMap":114},[1410,1441,1468,1491,1514,1529,1537,1545,1553],{"type":44,"tag":120,"props":1411,"children":1412},{"class":122,"line":123},[1413,1417,1421,1425,1429,1433,1437],{"type":44,"tag":120,"props":1414,"children":1415},{"style":127},[1416],{"type":49,"value":241},{"type":44,"tag":120,"props":1418,"children":1419},{"style":133},[1420],{"type":49,"value":246},{"type":44,"tag":120,"props":1422,"children":1423},{"style":133},[1424],{"type":49,"value":1285},{"type":44,"tag":120,"props":1426,"children":1427},{"style":154},[1428],{"type":49,"value":157},{"type":44,"tag":120,"props":1430,"children":1431},{"style":133},[1432],{"type":49,"value":643},{"type":44,"tag":120,"props":1434,"children":1435},{"style":154},[1436],{"type":49,"value":167},{"type":44,"tag":120,"props":1438,"children":1439},{"style":210},[1440],{"type":49,"value":269},{"type":44,"tag":120,"props":1442,"children":1443},{"class":122,"line":144},[1444,1448,1452,1456,1460,1464],{"type":44,"tag":120,"props":1445,"children":1446},{"style":133},[1447],{"type":49,"value":278},{"type":44,"tag":120,"props":1449,"children":1450},{"style":154},[1451],{"type":49,"value":157},{"type":44,"tag":120,"props":1453,"children":1454},{"style":133},[1455],{"type":49,"value":287},{"type":44,"tag":120,"props":1457,"children":1458},{"style":210},[1459],{"type":49,"value":292},{"type":44,"tag":120,"props":1461,"children":1462},{"style":154},[1463],{"type":49,"value":167},{"type":44,"tag":120,"props":1465,"children":1466},{"style":210},[1467],{"type":49,"value":269},{"type":44,"tag":120,"props":1469,"children":1470},{"class":122,"line":272},[1471,1475,1479,1483,1487],{"type":44,"tag":120,"props":1472,"children":1473},{"style":133},[1474],{"type":49,"value":278},{"type":44,"tag":120,"props":1476,"children":1477},{"style":154},[1478],{"type":49,"value":157},{"type":44,"tag":120,"props":1480,"children":1481},{"style":133},[1482],{"type":49,"value":316},{"type":44,"tag":120,"props":1484,"children":1485},{"style":154},[1486],{"type":49,"value":167},{"type":44,"tag":120,"props":1488,"children":1489},{"style":210},[1490],{"type":49,"value":269},{"type":44,"tag":120,"props":1492,"children":1493},{"class":122,"line":180},[1494,1498,1502,1506,1510],{"type":44,"tag":120,"props":1495,"children":1496},{"style":133},[1497],{"type":49,"value":278},{"type":44,"tag":120,"props":1499,"children":1500},{"style":154},[1501],{"type":49,"value":157},{"type":44,"tag":120,"props":1503,"children":1504},{"style":133},[1505],{"type":49,"value":341},{"type":44,"tag":120,"props":1507,"children":1508},{"style":154},[1509],{"type":49,"value":167},{"type":44,"tag":120,"props":1511,"children":1512},{"style":210},[1513],{"type":49,"value":269},{"type":44,"tag":120,"props":1515,"children":1516},{"class":122,"line":327},[1517,1521,1525],{"type":44,"tag":120,"props":1518,"children":1519},{"style":133},[1520],{"type":49,"value":512},{"type":44,"tag":120,"props":1522,"children":1523},{"style":154},[1524],{"type":49,"value":517},{"type":44,"tag":120,"props":1526,"children":1527},{"style":133},[1528],{"type":49,"value":833},{"type":44,"tag":120,"props":1530,"children":1531},{"class":122,"line":836},[1532],{"type":44,"tag":120,"props":1533,"children":1534},{"style":133},[1535],{"type":49,"value":1536},"    \"children\": [\n",{"type":44,"tag":120,"props":1538,"children":1539},{"class":122,"line":845},[1540],{"type":44,"tag":120,"props":1541,"children":1542},{"style":133},[1543],{"type":49,"value":1544},"      {\"object\": \"block\", \"type\": \"paragraph\", \"paragraph\": {\"rich_text\": [{\"text\": {\"content\": \"Hello\"}}]}}\n",{"type":44,"tag":120,"props":1546,"children":1547},{"class":122,"line":854},[1548],{"type":44,"tag":120,"props":1549,"children":1550},{"style":133},[1551],{"type":49,"value":1552},"    ]\n",{"type":44,"tag":120,"props":1554,"children":1555},{"class":122,"line":25},[1556,1560],{"type":44,"tag":120,"props":1557,"children":1558},{"style":133},[1559],{"type":49,"value":886},{"type":44,"tag":120,"props":1561,"children":1562},{"style":154},[1563],{"type":49,"value":527},{"type":44,"tag":57,"props":1565,"children":1567},{"id":1566},"property-types",[1568],{"type":49,"value":1569},"Property Types",{"type":44,"tag":51,"props":1571,"children":1572},{},[1573],{"type":49,"value":1574},"Common property formats for database items:",{"type":44,"tag":1576,"props":1577,"children":1578},"ul",{},[1579,1595,1610,1625,1640,1655,1670,1685,1700,1715],{"type":44,"tag":68,"props":1580,"children":1581},{},[1582,1587,1589],{"type":44,"tag":355,"props":1583,"children":1584},{},[1585],{"type":49,"value":1586},"Title:",{"type":49,"value":1588}," ",{"type":44,"tag":87,"props":1590,"children":1592},{"className":1591},[],[1593],{"type":49,"value":1594},"{\"title\": [{\"text\": {\"content\": \"...\"}}]}",{"type":44,"tag":68,"props":1596,"children":1597},{},[1598,1603,1604],{"type":44,"tag":355,"props":1599,"children":1600},{},[1601],{"type":49,"value":1602},"Rich text:",{"type":49,"value":1588},{"type":44,"tag":87,"props":1605,"children":1607},{"className":1606},[],[1608],{"type":49,"value":1609},"{\"rich_text\": [{\"text\": {\"content\": \"...\"}}]}",{"type":44,"tag":68,"props":1611,"children":1612},{},[1613,1618,1619],{"type":44,"tag":355,"props":1614,"children":1615},{},[1616],{"type":49,"value":1617},"Select:",{"type":49,"value":1588},{"type":44,"tag":87,"props":1620,"children":1622},{"className":1621},[],[1623],{"type":49,"value":1624},"{\"select\": {\"name\": \"Option\"}}",{"type":44,"tag":68,"props":1626,"children":1627},{},[1628,1633,1634],{"type":44,"tag":355,"props":1629,"children":1630},{},[1631],{"type":49,"value":1632},"Multi-select:",{"type":49,"value":1588},{"type":44,"tag":87,"props":1635,"children":1637},{"className":1636},[],[1638],{"type":49,"value":1639},"{\"multi_select\": [{\"name\": \"A\"}, {\"name\": \"B\"}]}",{"type":44,"tag":68,"props":1641,"children":1642},{},[1643,1648,1649],{"type":44,"tag":355,"props":1644,"children":1645},{},[1646],{"type":49,"value":1647},"Date:",{"type":49,"value":1588},{"type":44,"tag":87,"props":1650,"children":1652},{"className":1651},[],[1653],{"type":49,"value":1654},"{\"date\": {\"start\": \"2024-01-15\", \"end\": \"2024-01-16\"}}",{"type":44,"tag":68,"props":1656,"children":1657},{},[1658,1663,1664],{"type":44,"tag":355,"props":1659,"children":1660},{},[1661],{"type":49,"value":1662},"Checkbox:",{"type":49,"value":1588},{"type":44,"tag":87,"props":1665,"children":1667},{"className":1666},[],[1668],{"type":49,"value":1669},"{\"checkbox\": true}",{"type":44,"tag":68,"props":1671,"children":1672},{},[1673,1678,1679],{"type":44,"tag":355,"props":1674,"children":1675},{},[1676],{"type":49,"value":1677},"Number:",{"type":49,"value":1588},{"type":44,"tag":87,"props":1680,"children":1682},{"className":1681},[],[1683],{"type":49,"value":1684},"{\"number\": 42}",{"type":44,"tag":68,"props":1686,"children":1687},{},[1688,1693,1694],{"type":44,"tag":355,"props":1689,"children":1690},{},[1691],{"type":49,"value":1692},"URL:",{"type":49,"value":1588},{"type":44,"tag":87,"props":1695,"children":1697},{"className":1696},[],[1698],{"type":49,"value":1699},"{\"url\": \"https:\u002F\u002F...\"}",{"type":44,"tag":68,"props":1701,"children":1702},{},[1703,1708,1709],{"type":44,"tag":355,"props":1704,"children":1705},{},[1706],{"type":49,"value":1707},"Email:",{"type":49,"value":1588},{"type":44,"tag":87,"props":1710,"children":1712},{"className":1711},[],[1713],{"type":49,"value":1714},"{\"email\": \"a@b.com\"}",{"type":44,"tag":68,"props":1716,"children":1717},{},[1718,1723,1724],{"type":44,"tag":355,"props":1719,"children":1720},{},[1721],{"type":49,"value":1722},"Relation:",{"type":49,"value":1588},{"type":44,"tag":87,"props":1725,"children":1727},{"className":1726},[],[1728],{"type":49,"value":1729},"{\"relation\": [{\"id\": \"page_id\"}]}",{"type":44,"tag":57,"props":1731,"children":1733},{"id":1732},"key-differences-in-2025-09-03",[1734],{"type":49,"value":1735},"Key Differences in 2025-09-03",{"type":44,"tag":1576,"props":1737,"children":1738},{},[1739,1757,1821,1844,1868],{"type":44,"tag":68,"props":1740,"children":1741},{},[1742,1747,1749,1755],{"type":44,"tag":355,"props":1743,"children":1744},{},[1745],{"type":49,"value":1746},"Databases → Data Sources:",{"type":49,"value":1748}," Use ",{"type":44,"tag":87,"props":1750,"children":1752},{"className":1751},[],[1753],{"type":49,"value":1754},"\u002Fdata_sources\u002F",{"type":49,"value":1756}," endpoints for queries and retrieval",{"type":44,"tag":68,"props":1758,"children":1759},{},[1760,1765,1767,1773,1775,1781],{"type":44,"tag":355,"props":1761,"children":1762},{},[1763],{"type":49,"value":1764},"Two IDs:",{"type":49,"value":1766}," Each database now has both a ",{"type":44,"tag":87,"props":1768,"children":1770},{"className":1769},[],[1771],{"type":49,"value":1772},"database_id",{"type":49,"value":1774}," and a ",{"type":44,"tag":87,"props":1776,"children":1778},{"className":1777},[],[1779],{"type":49,"value":1780},"data_source_id",{"type":44,"tag":1576,"props":1782,"children":1783},{},[1784,1803],{"type":44,"tag":68,"props":1785,"children":1786},{},[1787,1789,1794,1796,1802],{"type":49,"value":1788},"Use ",{"type":44,"tag":87,"props":1790,"children":1792},{"className":1791},[],[1793],{"type":49,"value":1772},{"type":49,"value":1795}," when creating pages (",{"type":44,"tag":87,"props":1797,"children":1799},{"className":1798},[],[1800],{"type":49,"value":1801},"parent: {\"database_id\": \"...\"}",{"type":49,"value":102},{"type":44,"tag":68,"props":1804,"children":1805},{},[1806,1807,1812,1814,1820],{"type":49,"value":1788},{"type":44,"tag":87,"props":1808,"children":1810},{"className":1809},[],[1811],{"type":49,"value":1780},{"type":49,"value":1813}," when querying (",{"type":44,"tag":87,"props":1815,"children":1817},{"className":1816},[],[1818],{"type":49,"value":1819},"POST \u002Fv1\u002Fdata_sources\u002F{id}\u002Fquery",{"type":49,"value":102},{"type":44,"tag":68,"props":1822,"children":1823},{},[1824,1829,1831,1837,1839],{"type":44,"tag":355,"props":1825,"children":1826},{},[1827],{"type":49,"value":1828},"Search results:",{"type":49,"value":1830}," Databases return as ",{"type":44,"tag":87,"props":1832,"children":1834},{"className":1833},[],[1835],{"type":49,"value":1836},"\"object\": \"data_source\"",{"type":49,"value":1838}," with their ",{"type":44,"tag":87,"props":1840,"children":1842},{"className":1841},[],[1843],{"type":49,"value":1780},{"type":44,"tag":68,"props":1845,"children":1846},{},[1847,1852,1854,1860,1862],{"type":44,"tag":355,"props":1848,"children":1849},{},[1850],{"type":49,"value":1851},"Parent in responses:",{"type":49,"value":1853}," Pages show ",{"type":44,"tag":87,"props":1855,"children":1857},{"className":1856},[],[1858],{"type":49,"value":1859},"parent.data_source_id",{"type":49,"value":1861}," alongside ",{"type":44,"tag":87,"props":1863,"children":1865},{"className":1864},[],[1866],{"type":49,"value":1867},"parent.database_id",{"type":44,"tag":68,"props":1869,"children":1870},{},[1871,1876,1878],{"type":44,"tag":355,"props":1872,"children":1873},{},[1874],{"type":49,"value":1875},"Finding the data_source_id:",{"type":49,"value":1877}," Search for the database, or call ",{"type":44,"tag":87,"props":1879,"children":1881},{"className":1880},[],[1882],{"type":49,"value":1883},"GET \u002Fv1\u002Fdata_sources\u002F{data_source_id}",{"type":44,"tag":57,"props":1885,"children":1887},{"id":1886},"notes",[1888],{"type":49,"value":1889},"Notes",{"type":44,"tag":1576,"props":1891,"children":1892},{},[1893,1898,1903,1908],{"type":44,"tag":68,"props":1894,"children":1895},{},[1896],{"type":49,"value":1897},"Page\u002Fdatabase IDs are UUIDs (with or without dashes)",{"type":44,"tag":68,"props":1899,"children":1900},{},[1901],{"type":49,"value":1902},"The API cannot set database view filters — that's UI-only",{"type":44,"tag":68,"props":1904,"children":1905},{},[1906],{"type":49,"value":1907},"Rate limit: ~3 requests\u002Fsecond average",{"type":44,"tag":68,"props":1909,"children":1910},{},[1911,1912,1918],{"type":49,"value":1788},{"type":44,"tag":87,"props":1913,"children":1915},{"className":1914},[],[1916],{"type":49,"value":1917},"is_inline: true",{"type":49,"value":1919}," when creating data sources to embed them in pages",{"type":44,"tag":1921,"props":1922,"children":1923},"style",{},[1924],{"type":49,"value":1925},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1927,"total":2017},[1928,1944,1956,1968,1978,1990,2001],{"slug":1929,"name":1929,"fn":1930,"description":1931,"org":1932,"tags":1933,"stars":21,"repoUrl":22,"updatedAt":1943},"1password","manage secrets with 1Password CLI","Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading\u002Finjecting\u002Frunning secrets via op.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1934,1937,1940],{"name":1935,"slug":1936,"type":14},"Automation","automation",{"name":1938,"slug":1939,"type":14},"CLI","cli",{"name":1941,"slug":1942,"type":14},"Security","security","2026-07-12T08:28:49.991939",{"slug":1945,"name":1945,"fn":1946,"description":1947,"org":1948,"tags":1949,"stars":21,"repoUrl":22,"updatedAt":1955},"apple-notes","manage Apple Notes on macOS","Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1950,1951,1952],{"name":1938,"slug":1939,"type":14},{"name":16,"slug":17,"type":14},{"name":1953,"slug":1954,"type":14},"macOS","macos","2026-07-12T08:29:01.538106",{"slug":1957,"name":1957,"fn":1958,"description":1959,"org":1960,"tags":1961,"stars":21,"repoUrl":22,"updatedAt":1967},"apple-reminders","manage Apple Reminders via CLI","Manage Apple Reminders via the `remindctl` CLI on macOS (list, add, edit, complete, delete). Supports lists, date filters, and JSON\u002Fplain output.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1962,1963,1964],{"name":1938,"slug":1939,"type":14},{"name":1953,"slug":1954,"type":14},{"name":1965,"slug":1966,"type":14},"Task Management","task-management","2026-07-12T08:29:14.035414",{"slug":1969,"name":1969,"fn":1970,"description":1971,"org":1972,"tags":1973,"stars":21,"repoUrl":22,"updatedAt":1977},"bear-notes","manage Bear notes via CLI","Create, search, and manage Bear notes via grizzly CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1974,1975,1976],{"name":1938,"slug":1939,"type":14},{"name":16,"slug":17,"type":14},{"name":1889,"slug":1886,"type":14},"2026-07-12T08:28:51.246011",{"slug":1979,"name":1979,"fn":1980,"description":1981,"org":1982,"tags":1983,"stars":21,"repoUrl":22,"updatedAt":1989},"blogwatcher","monitor blogs and RSS feeds","Monitor blogs and RSS\u002FAtom feeds for updates using the blogwatcher CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1984,1985,1986],{"name":1935,"slug":1936,"type":14},{"name":1938,"slug":1939,"type":14},{"name":1987,"slug":1988,"type":14},"Monitoring","monitoring","2026-07-12T08:29:02.762321",{"slug":1991,"name":1991,"fn":1992,"description":1993,"org":1994,"tags":1995,"stars":21,"repoUrl":22,"updatedAt":2000},"blucli","control BluOS audio playback","BluOS CLI (blu) for discovery, playback, grouping, and volume.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1996,1999],{"name":1997,"slug":1998,"type":14},"Audio","audio",{"name":1938,"slug":1939,"type":14},"2026-07-12T08:28:21.009637",{"slug":2002,"name":2002,"fn":2003,"description":2004,"org":2005,"tags":2006,"stars":21,"repoUrl":22,"updatedAt":2016},"bluebubbles","send and manage iMessages","Use when you need to send or manage iMessages via BlueBubbles (recommended iMessage integration). Calls go through the generic message tool with channel=\"bluebubbles\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2007,2010,2013],{"name":2008,"slug":2009,"type":14},"Communications","communications",{"name":2011,"slug":2012,"type":14},"iMessage","imessage",{"name":2014,"slug":2015,"type":14},"Messaging","messaging","2026-07-12T08:28:57.517914",54,{"items":2019,"total":2124},[2020,2034,2040,2046,2052,2058,2064,2069,2075,2089,2101,2113],{"slug":2021,"name":2021,"fn":2022,"description":2023,"org":2024,"tags":2025,"stars":2031,"repoUrl":2032,"updatedAt":2033},"deepclaw-voice","configure phone calls with Deepgram Voice","Set up phone calling to OpenClaw using Deepgram Voice Agent API",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2026,2027,2028],{"name":19,"slug":20,"type":14},{"name":9,"slug":8,"type":14},{"name":2029,"slug":2030,"type":14},"Voice","voice",78,"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fdeepclaw","2026-07-12T08:29:25.371332",{"slug":1929,"name":1929,"fn":1930,"description":1931,"org":2035,"tags":2036,"stars":21,"repoUrl":22,"updatedAt":1943},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2037,2038,2039],{"name":1935,"slug":1936,"type":14},{"name":1938,"slug":1939,"type":14},{"name":1941,"slug":1942,"type":14},{"slug":1945,"name":1945,"fn":1946,"description":1947,"org":2041,"tags":2042,"stars":21,"repoUrl":22,"updatedAt":1955},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2043,2044,2045],{"name":1938,"slug":1939,"type":14},{"name":16,"slug":17,"type":14},{"name":1953,"slug":1954,"type":14},{"slug":1957,"name":1957,"fn":1958,"description":1959,"org":2047,"tags":2048,"stars":21,"repoUrl":22,"updatedAt":1967},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2049,2050,2051],{"name":1938,"slug":1939,"type":14},{"name":1953,"slug":1954,"type":14},{"name":1965,"slug":1966,"type":14},{"slug":1969,"name":1969,"fn":1970,"description":1971,"org":2053,"tags":2054,"stars":21,"repoUrl":22,"updatedAt":1977},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2055,2056,2057],{"name":1938,"slug":1939,"type":14},{"name":16,"slug":17,"type":14},{"name":1889,"slug":1886,"type":14},{"slug":1979,"name":1979,"fn":1980,"description":1981,"org":2059,"tags":2060,"stars":21,"repoUrl":22,"updatedAt":1989},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2061,2062,2063],{"name":1935,"slug":1936,"type":14},{"name":1938,"slug":1939,"type":14},{"name":1987,"slug":1988,"type":14},{"slug":1991,"name":1991,"fn":1992,"description":1993,"org":2065,"tags":2066,"stars":21,"repoUrl":22,"updatedAt":2000},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2067,2068],{"name":1997,"slug":1998,"type":14},{"name":1938,"slug":1939,"type":14},{"slug":2002,"name":2002,"fn":2003,"description":2004,"org":2070,"tags":2071,"stars":21,"repoUrl":22,"updatedAt":2016},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2072,2073,2074],{"name":2008,"slug":2009,"type":14},{"name":2011,"slug":2012,"type":14},{"name":2014,"slug":2015,"type":14},{"slug":2076,"name":2076,"fn":2077,"description":2078,"org":2079,"tags":2080,"stars":21,"repoUrl":22,"updatedAt":2088},"camsnap","capture frames and clips from cameras","Capture frames or clips from RTSP\u002FONVIF cameras.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2081,2082,2085],{"name":1935,"slug":1936,"type":14},{"name":2083,"slug":2084,"type":14},"Camera","camera",{"name":2086,"slug":2087,"type":14},"Media","media","2026-07-12T08:28:28.096134",{"slug":2090,"name":2090,"fn":2091,"description":2092,"org":2093,"tags":2094,"stars":21,"repoUrl":22,"updatedAt":2100},"clawhub","manage agent skills with ClawHub","Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new\u002Fupdated skill folders with the npm-installed clawhub CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2095,2098,2099],{"name":2096,"slug":2097,"type":14},"Agents","agents",{"name":1935,"slug":1936,"type":14},{"name":1938,"slug":1939,"type":14},"2026-07-12T08:28:30.589001",{"slug":2102,"name":2102,"fn":2103,"description":2104,"org":2105,"tags":2106,"stars":21,"repoUrl":22,"updatedAt":2112},"coding-agent","run coding agents for programmatic control","Run Codex CLI, Claude Code, OpenCode, or Pi Coding Agent via background process for programmatic control.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2107,2108,2109],{"name":2096,"slug":2097,"type":14},{"name":1935,"slug":1936,"type":14},{"name":2110,"slug":2111,"type":14},"Coding","coding","2026-07-12T08:29:08.6658",{"slug":2114,"name":2114,"fn":2115,"description":2116,"org":2117,"tags":2118,"stars":21,"repoUrl":22,"updatedAt":2123},"eightctl","control Eight Sleep pod settings","Control Eight Sleep pods (status, temperature, alarms, schedules).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2119,2120],{"name":1935,"slug":1936,"type":14},{"name":2121,"slug":2122,"type":14},"Hardware","hardware","2026-07-12T08:28:39.322181",73]