Providers
Notion
Pages, databases, and blocks.
Quickstart
import { Notion } from '@remcostoeten/fync';
const notion = Notion({ token: process.env.NOTION_TOKEN! });Pages and databases
await notion.getPage('pageId');
await notion.queryDatabase('dbId', { page_size: 5 });
await notion.createPageInDatabase('dbId', { Name: { title: notion.createRichText('Doc') } });