FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Notion Has a Free API — Build Integrations That Read, Write, and Automate Your Workspace
How-ToWeb Development

Notion Has a Free API — Build Integrations That Read, Write, and Automate Your Workspace

via Dev.to WebdevAlex Spinov3h ago

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

Read Full Article
2 views

Related Articles

I Missed This Claude Setting at First. And It Actually Matters
How-To

I Missed This Claude Setting at First. And It Actually Matters

Medium Programming • 4h ago

Instacart Promo Code: Save on Groceries in March 2026
How-To

Instacart Promo Code: Save on Groceries in March 2026

Wired • 6h ago

How a Switch Actually “Learns”: Demystifying MAC Addresses and the CAM Table
How-To

How a Switch Actually “Learns”: Demystifying MAC Addresses and the CAM Table

Medium Programming • 6h ago

This is the lowest price on a 64GB RAM kit I've seen in months
How-To

This is the lowest price on a 64GB RAM kit I've seen in months

ZDNet • 13h ago

What Is Computer Science? (Learn This Before It’s Too Late)
How-To

What Is Computer Science? (Learn This Before It’s Too Late)

Medium Programming • 13h ago

Discover More Articles