Notion Release Notes April 2026: Full Changelog With Dates
Notion Release Notes April 2026
Notion shipped 14 changes in April 2026 across AI, API, and platform categories. These release notes compile every confirmed change into a single chronological reference, organized by date and tagged by who it affects.
If you manage a workspace, build integrations, or just want to know what changed before your next Monday standup, this is the page to bookmark.
April 2026 Changelog at a Glance
| Date | Change | Who It Affects | Status | |---|---|---|---| | Apr 1 | Views API (8 endpoints) | Developers | GA | | Apr 1 | Smart filters (relative dates, "me") | Developers, users | GA | | Apr 1 | Heading 4 block type in API | Developers | GA | | Apr 1 | Tab block API support | Developers | GA | | Apr 1 | Writable wiki verification | Developers, admins | GA | | Apr 3 | Voice input for AI prompts | Desktop users | GA | | Apr 3 | AI meeting notes from Cmd+K | All users | GA | | Apr 7 | Custom meeting note instructions | Workspace admins | GA | | Apr 7 | Academy localization (6 languages) | Non-English users | GA | | Apr 9 | Workers for Agents (code execution) | Developers | Preview | | Apr 10 | Dashboard view type | All users | GA | | Apr 10 | Sidebar redesign | All users | GA | | Apr 11 | Improved page load performance | All users | Rollout | | Apr 12 | Notion Calendar sync improvements | Calendar users | GA |
Week 1: API and Developer Updates (April 1)
Notion front-loaded the month with a batch of API changes. All of these shipped on the same day and are generally available.
Views API
Eight new endpoints let developers create, read, update, and delete database views programmatically. Before this, views were UI-only. You could query a database through the API, but you could not control how that data was displayed.
The endpoints follow Notion's standard REST patterns:
GET /v1/views # List views for a database
POST /v1/views # Create a view
GET /v1/views/{view_id} # Get a specific view
PATCH /v1/views/{view_id} # Update a view
DELETE /v1/views/{view_id} # Delete a view
GET /v1/views/{view_id}/filters # Read filters
GET /v1/views/{view_id}/sorts # Read sorts
PATCH /v1/views/{view_id}/properties # Update visible properties
Rate limits share the existing pool (3 requests/second per integration). No separate quota.
Smart Filters
Two new dynamic filter types: relative dates (this_week, next_week, today) and a me people filter. These replace hardcoded values in database queries and handle timezone edge cases automatically.
{
"filter": {
"property": "Due Date",
"date": { "this_week": {} }
}
}
Heading 4 and Tab Blocks
The block type enum gained heading_4 (previously only H1 through H3 were available) and tab/tab_group types. Tab blocks were previously invisible to the API, so any content inside tabs was silently skipped during exports. If your integration exports pages, verify it handles these new types.
Writable Wiki Verification
The verification property on wiki pages is now writable through the API. Teams that audit wiki content quality can mark pages as verified programmatically.
Week 1: AI Features (April 3)
Voice Input for AI Prompts
Hold the voice shortcut while focused on any AI input field (Cmd+J, inline AI, meeting note prompts) to dictate instead of type. Transcription latency is under one second.
Platform availability: macOS and Windows desktop apps only. Not available on web or mobile.
Scope: Voice input works exclusively in AI prompt fields. It is not general dictation for regular text editing.
AI Meeting Notes from Cmd+K
Meeting note capture moved into the command palette. Press Cmd+K (macOS) or Ctrl+K (Windows), type "meeting notes," and start capturing. No need to navigate to a meetings database first.
Week 2: Admin and Platform Updates (April 7)
Custom Meeting Note Instructions
Workspace admins can now set default meeting note behavior in Settings > Workspace > AI > Meeting Notes. Configurable parameters:
| Setting | Options | |---|---| | Tone | Formal, casual, technical | | Section structure | Custom heading templates | | Summary length | Brief, standard, detailed | | Context injection | Background info included in every summary |
Changes apply workspace-wide to all new meeting summaries.
Notion Academy: 6 New Languages
The Academy learning platform expanded from 6 to 12 languages: Spanish, Portuguese, Japanese, Korean, French, and German. This affects training content only, not the Notion application UI.
Week 2: Major Feature Releases (April 9 - 10)
Workers for Agents (Developer Preview)
The biggest single addition this month. Workers let Notion AI agents execute JavaScript and TypeScript in a sandboxed runtime.
| Constraint | Limit | |---|---| | Execution timeout | 30 seconds | | Memory | 128 MB | | Outbound HTTP | Approved domain allowlist | | Persistent state | None between invocations |
Developer Preview Only
Workers for Agents requires opt-in through Notion's developer portal. Runtime limits and the domain allowlist may change before general availability. Do not build production workflows on this feature yet.
What Workers enable that Notion AI previously could not do:
- Aggregate numbers across database rows (sum, average, percentile)
- Format data into structured outputs (CSV, JSON)
- Call external APIs within a prompt context
- Perform accurate date math and timezone conversions
Dashboard View
A new database view type designed for summary displays. Dashboards aggregate data from linked databases into cards, charts, and metric tiles. Unlike table or board views, dashboards do not show individual rows. They show computed summaries.
Sidebar Redesign
The navigation sidebar received a visual overhaul: collapsible sections, drag-to-reorder, and improved search behavior within the sidebar panel. The page hierarchy structure is unchanged.
Week 3: Performance and Polish (April 11 - 12)
Page Load Performance
Notion reported measurable improvements to initial page load times, particularly for pages with large databases or heavy embed content. The team did not publish specific metrics, but users in the Notion subreddit reported 20-30% faster load times on database-heavy workspaces.
Calendar Sync Improvements
Notion Calendar's two-way sync with Google Calendar received reliability fixes. Recurring events and timezone handling during daylight saving transitions were the primary focus.
What Did Not Change
A few things people asked about that did not ship in April 2026:
- Offline mode: Still not available. Notion requires an internet connection for all operations.
- Self-hosted option: No movement on self-hosting. Notion remains SaaS-only.
- Mobile voice input: Desktop only. No announced timeline for mobile.
- Workers GA: Still developer preview. No GA date announced.
- Pricing: No changes to any plan tier.
How Fazm Helps You Track These Changes
Keeping up with Notion's release cadence is one thing. Acting on those changes across your workspace is another. Fazm is an open source macOS AI agent that can monitor your tools, summarize what changed, and help you adapt your workflows when platforms like Notion ship updates.
Instead of reading release notes and manually updating your processes, Fazm watches for the changes that matter to you and surfaces what needs attention.
Frequently Asked Questions
What are the Notion release notes for April 2026?
Notion shipped 14 updates in April 2026: Views API (8 new endpoints), smart filters with relative dates, heading 4 and tab block API support, writable wiki verification, voice input for AI on desktop, AI meeting notes from Cmd+K, custom meeting note instructions, Notion Academy in 6 new languages, Workers for Agents (developer preview), Dashboard view, sidebar redesign, page load improvements, and Calendar sync fixes.
Were there any breaking changes in the April 2026 Notion release?
No. All April 2026 changes are additive. Existing integrations and workflows continue to work without modification. Developers should update their SDK to access new endpoints and handle new block types (heading_4, tab, tab_group).
Is Workers for Agents ready for production use?
No. Workers for Agents is in developer preview as of April 2026. It requires opt-in through the developer portal, and the runtime constraints (30-second timeout, 128 MB memory, domain allowlist) may change before general availability.
Did Notion change its pricing in April 2026?
No pricing changes were included in the April 2026 release notes. Workers for Agents is available to existing plan tiers during the developer preview period.
Fazm is an open source macOS AI agent. Open source on GitHub.