Learn · thread roundup

“Notion API rate limit” on Reddit: the real threads

People append “reddit” to this search because they want what actual developers hit, not SEO filler. Here is that — a roundup of real, individually verified threads from r/Notion, GitHub, and automation-tool forums about Notion’s documented average of 3 requests per second per integration (HTTP 429 + Retry-After when you exceed it), each linked to the original discussion. Two stories emerge: the limit is too low for real read workloads, and in February 2026 it misfired on people who were nowhere near it.

The thesis threads: 3 req/s is too low for real workloads

r/Notion · Jul 2022 · 35 points

Is the API (2022-06-28) going to make Notion useless as CMS/DB?

A builder using Notion to back a blog and reading trackers does the arithmetic on the then-new API version and the limit. u/FalconSensei: “And they are rate limiting to 3 requests per second... This will basically make the api unusable...” (A commenter corrects the worst-case math downward, but the request-fan-out concern stands.) Another commenter building a blog on the API: “Now I am getting doubtful about it to complete this project or not” (u/productive-pod).

r/Notion · Sep 2022 · 17 comments

How do you handle Request limits using Notion API?

A SaaS builder asks whether a paid tier lifts the limit (it doesn’t). The consensus is self-throttling: “you need to comply with the limits and use exponential back offs” (u/leanzubrezki). The thread also surfaces genuine confusion about whether the cap is per-integration or per-access-token, and ends with the bluntest data point in this roundup — u/jeromeserre: “we have just ruled out developing a service with Notion’s API because of that limit. :/”

r/Notion · Jun 2024 · 11 comments

Notion API is causing headaches — has anyone integrated Notion with their own app/website?

A startup using Notion as the CMS behind its site: “Notion caps the API to ~180 requests per minute. Since I’m fetching all of the data from Notion whenever I build and publish a new version of my website, I’m limited to a small number of pages, as each page requires quite a few API calls” (u/halcyon010). Commenters advise against real-time reads entirely: “I would recommend to stay away from requesting Notion in real time. In my experience it is slow and unreliable” (u/notionself).

Indie Hackers · Aug 2022

Question about Notion API rate limits

Same conclusion off Reddit. Timur Nurislamov, building a product on the API: “3 requests per second is nonsense. You need to make couple of requests to receive some content (database → page → block → children). ... It looks like their API is unusable.”

The same wall, from the tools' bug trackers

The Reddit threads aren’t outliers — the projects that build on the API file the same complaint:

GitHub · makenotion/notion-sdk-js · Apr 2022

Rate limited

An app polling the API once per second gets Notion’s standard refusal — “You have been rate limited. Please try again in a few minutes.” — and the developer asks Notion’s official SDK repo what the actual read limit is.

GitHub · ramnes/notion-sdk-py · Mar 2025

Consider adding a rate-limiter in the API

A developer doing concurrent async updates hits the limit and asks the most-used community Python SDK to ship a built-in rate limiter, because its paginated helpers are hard to throttle from the caller’s side. Rate limiting is so unavoidable that users want it in the client library.

GitHub · danswer-ai (Onyx) · Mar 2024

Notion Connection hitting 404's & 429's regularly

An open-source AI search product’s Notion connector gets 429s just crawling a workspace’s block children, and the requested fix is to crawl less often — throttling a product feature to fit the API.

February 2026: 429s below the limit

The second story is newer and different in kind. In late February 2026, three independent reports — two on r/Notion, one on the n8n forum — describe 429 errors on automations running far below the documented limit, all starting the same week. This was a platform-side incident, not developers exceeding 3 req/s; per the thread authors, Notion support acknowledged the reports and later said it was fixed.

r/Notion · Feb 21, 2026

Frequent Rate Limited blocks?

A make.com automation touching a table of at most 10 rows, one row every 40–50 seconds, suddenly rate-limited: “I’ve been using this method for over a year now and had no errors... it’s only the last day or so” (u/MrAndyPuppy). Commenters report the same, starting the same day.

r/Notion · Feb 26, 2026

Anyone having odd API rate-limit issues?

A workflow that runs five or six times a day: “since February 20th, I am receiving error 429 ‘too many requests’ from Notion API about 80% of the time” — even on the first request in 24 hours, even with a fresh credential (u/Right-Nail-5871). The OP adds that a response from Notion support indicated others were reporting the same problem.

n8n community · Feb 24, 2026

Rate limit with n8n & notion

An n8n workflow that had polled three databases every two minutes for months starts failing with 429s the same week. The fixes the community reached for — wait nodes, recreated credentials, switching from polling to webhooks — and the OP’s update that Notion confirmed a fix, mark this as the third sighting of the same incident.

The takeaway isn’t “Notion is always broken” — it’s that when your pipeline’s only defense is a client-side queue tuned to someone else’s ceiling, a platform-side misfire stops your automations and support tickets are the only recourse.

What the threads recommend (and where we fit)

If you’re staying on Notion, the thread consensus works:

  • One process-wide queue capped under 3 req/s; honor Retry-After with exponential backoff and jitter.
  • Batch writes and cache reads — most pipeline steps re-fetch state another step just saw.
  • Prefer webhooks to polling, and for CMS use cases prerender to a static site instead of reading Notion per-request.

Our take, stated plainly as the vendor of an alternative: those are mitigations for a ceiling that exists because agent and pipeline traffic is treated as abuse. Novum OS treats it as the workload — agents hold real seats with standard rate limits sized for pipelines, webhook payloads carry the changed fields inline so the follow-up fetch mostly disappears, and one ?depth= parameter returns a card’s whole block tree in a single request. We wrote up the mechanics (and the math of why 3 req/s breaks batch jobs) in the rate-limits deep dive; the honest caveat is that if you only sync a handful of records a day, Notion’s limit will rarely bother you outside incidents like February 2026.

Quick answers

Why do developers on Reddit call the Notion API rate limit unusable?

Because one logical read fans out into many requests. Reading a board means fetching the database, then pages, then each page’s block children — so the documented average of 3 requests per second per integration becomes a fraction of that in practice. In the threads rounded up here, developers doing bulk reads, CMS builds, or migrations hit the wall hardest; several describe abandoning Notion-based products over it.

Why am I getting 429 errors below Notion’s rate limit?

It has happened. In late February 2026, multiple independent users on r/Notion and the n8n forum reported 429 "rate limited" errors on very low-volume automations — single requests hours apart — starting the same week. Thread authors reported that Notion support acknowledged the problem and later said it was fixed. If you see 429s at low volume, check for a platform-side incident before rewriting your throttling.

What do Reddit threads recommend for Notion API 429s?

The consensus across the threads: keep every call behind one queue capped under 3 req/s, honor the Retry-After header with exponential backoff, batch and cache reads, prefer webhooks over polling, and for CMS use cases prerender to a static site instead of reading Notion in real time.

Is there a kanban API without the 3 req/s ceiling?

Novum OS is built for agent and pipeline traffic: agents are members with real seats and standard rate limits sized for batch workloads, webhook payloads carry changed fields inline (killing most follow-up reads), and one ?depth= parameter fetches a whole card tree in a single request. There is no per-call metering.

Point your pipeline at a board without the 3 req/s wall — free tier, no card, full API and MCP included.

Create account

Every thread and issue linked on this page was individually loaded and verified, and quotes are short excerpts of text observed there, as of July 2026. Threads may change or be deleted after that; linked discussions reflect their authors’ own views at the time of posting.