
Notion Has a Free API — Build Integrations That Read, Write, and Automate Your Workspace
Notion Has a Free API — Build Integrations That Read, Write, and Automate Your Workspace Notion is where teams organize everything — docs, wikis, databases, project boards. Its API turns all of that into programmable data. Query databases, create pages, update properties — all via REST. Free Tier (Free Plan) Unlimited pages and blocks for individuals Up to 10 guests for sharing 7-day page history API access included on all plans Integrations with 70+ tools REST API: Query a Database const { Client } = require ( ' @notionhq/client ' ); const notion = new Client ({ auth : ' your-integration-token ' }); // Query a database with filters const response = await notion . databases . query ({ database_id : ' your-database-id ' , filter : { and : [ { property : ' Status ' , status : { equals : ' In Progress ' } }, { property : ' Priority ' , select : { equals : ' High ' } } ] }, sorts : [{ property : ' Due Date ' , direction : ' ascending ' }] }); response . results . forEach ( page => { const
Continue reading on Dev.to Webdev
Opens in a new tab



