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 Custom Dashboards and Automate Your Workflow
How-ToSystems

Notion Has a Free API — Build Custom Dashboards and Automate Your Workflow

via Dev.toAlex Spinov2h ago

Notion Is Not Just a Note App Notion API lets you programmatically read, create, and update pages, databases, and blocks. Free for personal use, included in all plans. Setup Go to notion.so/my-integrations Create new integration Copy the API key Share your database/page with the integration import requests TOKEN = " your_notion_api_key " HEADERS = { " Authorization " : f " Bearer { TOKEN } " , " Content-Type " : " application/json " , " Notion-Version " : " 2022-06-28 " } Query a Database def query_database ( db_id , filter_obj = None ): data = {} if filter_obj : data [ " filter " ] = filter_obj r = requests . post ( f " https://api.notion.com/v1/databases/ { db_id } /query " , headers = HEADERS , json = data ) results = r . json ()[ " results " ] return [{ " id " : p [ " id " ], " props " : { k : v for k , v in p [ " properties " ]. items ()}} for p in results ] # Get all items where Status = "Done" items = query_database ( " your_db_id " , { " property " : " Status " , " status " : {

Continue reading on Dev.to

Opens in a new tab

Read Full Article
0 views

Related Articles

We Tested This FREE TradingView Trend Indicator… It Only Works Here!
How-To

We Tested This FREE TradingView Trend Indicator… It Only Works Here!

Medium Programming • 3h ago

5 Campfire Songs Anyone Can Play on Guitar (Free Chord Charts)
How-To

5 Campfire Songs Anyone Can Play on Guitar (Free Chord Charts)

Dev.to Beginners • 6h ago

Bybit vs HTX — Which Crypto Exchange Is Better? (2026)
How-To

Bybit vs HTX — Which Crypto Exchange Is Better? (2026)

Dev.to Beginners • 6h ago

Stop Posting Noise: Building in Public Needs Real Value
How-To

Stop Posting Noise: Building in Public Needs Real Value

Dev.to Beginners • 7h ago

We got an audience with the "Lunar Viceroy" to talk how NASA will build a Moon base
How-To

We got an audience with the "Lunar Viceroy" to talk how NASA will build a Moon base

Ars Technica • 7h ago

Discover More Articles