notion-hello-world
Installation
SKILL.md
Notion Hello World
Overview
Three minimal examples covering the Notion API core surfaces: searching for pages, creating a test page in a database, and verifying the created page by retrieving it back.
Prerequisites
- Completed
notion-install-authsetup NOTION_TOKENenvironment variable set (internal integration token from https://www.notion.so/my-integrations)- At least one database shared with your integration via the Connections menu
- Node.js 18+ with
@notionhq/clientor Python 3.8+ withnotion-client
Instructions
Step 1: Search for Pages in Your Workspace
import { Client } from '@notionhq/client';
Related skills