Notion Updates April 2026: Everything New This Month
Notion Updates April 2026
Notion shipped a wave of updates in late March and early April 2026 that collectively represent the biggest product shift since the original AI launch. Voice input on desktop, a code execution layer for AI agents, an entirely new database view type, and a redesigned sidebar all landed within two weeks of each other.
Here is a concrete breakdown of every update, what it actually does, and where the rough edges still are.
What Shipped in April 2026
April's updates build on the Notion 3.4 release (March 26) and push further into AI-native territory.
| Update | Date | Category | Impact | |---|---|---|---| | Voice input on desktop | April 6 | AI / Input | Dictate prompts to Notion AI instead of typing | | AI meeting notes from command search | April 2026 | AI / Meetings | Quick-capture meeting notes without navigating away | | Custom instructions for AI meeting notes | April 2026 | AI / Meetings | Control tone, sections, length, and team context | | Workers for Notion Agents | April 2026 | Developer / AI | Code execution environment for custom agent tools | | Heading 4 blocks in API | April 2026 | Developer | Finer heading granularity for structured content | | /v1/views API (8 endpoints) | April 2026 | Developer | Programmatic database view management | | Tab block support in API | April 2026 | Developer | Read and write tab blocks via the SDK | | Writable wiki verification | April 2026 | Developer | Set verification status on wiki pages via API | | Smart filters ("me", relative dates) | April 2026 | Developer | Filter by current user or today/tomorrow in API calls | | Notion Academy in 6 new languages | April 2026 | Education | Spanish, Portuguese, Japanese, Korean, French, German |
Voice Input on Desktop
Notion added voice dictation for AI prompts on desktop (macOS and Windows). Instead of typing a prompt in the AI sidebar or inline AI block, you can hold a key and speak. The transcription runs through Notion's own pipeline and feeds directly into whatever AI action you have selected.
This matters if you use Notion AI for drafting, summarization, or brainstorming. Typing a prompt like "summarize the Q2 marketing plan and pull out the three riskiest assumptions" takes long enough that you might not bother. Speaking it takes five seconds.
What works well
The latency is low (under a second for transcription on a typical prompt). It integrates with every AI surface: inline AI, sidebar chat, and meeting notes. The transcription quality handles technical terms reasonably, though you will want to double-check acronyms and product names.
Where it falls short
There is no continuous dictation mode. You speak one prompt, it transcribes, and you submit. If you want to dictate an entire document paragraph by paragraph, this is not the tool for that. macOS already has system-level dictation (Fn key twice) that works in any text field, including Notion. The new voice input is specifically for AI prompts, not general text entry.
AI Meeting Notes Improvements
Two related updates landed together: meeting notes accessible from command search (Cmd+K / Ctrl+K) and custom instructions for how those notes get generated.
The command search integration means you can hit Cmd+K, type "meeting notes", and start capturing without navigating to a specific page first. Previously you had to be on the meeting notes page or use the sidebar.
Custom instructions let you define a template for how the AI structures meeting summaries. You can specify:
- Tone (formal, conversational, bullet-point only)
- Sections (decisions, action items, open questions, parking lot)
- Length (brief one-pager vs. detailed transcript summary)
- Team context (e.g., "this is a weekly engineering standup, focus on blockers and deployments")
This is a meaningful improvement for teams that were manually reformatting AI-generated notes after every meeting. Setting the instructions once means consistent output across your workspace.
Tip
Set custom instructions at the workspace level, not per page. This way every new meeting note inherits your preferred format automatically. Navigate to Settings, then Notion AI, then Meeting Notes to configure.
Workers for Notion Agents
This is the most technically significant update of the month. Workers give developers a code execution environment where they can write custom tools that Notion's AI agents can invoke.
Think of it as function calling, but managed by Notion. You write a Worker (a small piece of server-side code), register it with an agent, and the agent can call it when it determines the tool is relevant to a user's request.
How Workers Fit Into the Agent Architecture
The agent receives a user prompt, determines intent, and selects the appropriate Worker(s) to execute. Workers run in a sandboxed environment managed by Notion, so you do not need to provision infrastructure.
What You Can Build
- Pull data from external systems (CRM, analytics, internal APIs) into Notion pages
- Push Notion data to external systems when an agent determines it is relevant
- Transform data formats (CSV to database rows, JSON to formatted pages)
- Run calculations or aggregations that go beyond Notion formulas
Limitations to Know
Workers are still in early access. The execution environment has a 30-second timeout, 128MB memory limit, and no persistent storage between invocations. You cannot make outbound network calls to arbitrary hosts yet; Notion maintains an allowlist of approved domains. These constraints will likely loosen over time, but right now Workers are best for lightweight data transformations and simple API calls.
Notion 3.4 Features Now Rolling Out
The March 26 release of Notion 3.4 was a feature announcement; April is when most workspaces actually got access. These are worth covering because if you logged into Notion in April, you saw them for the first time.
Dashboard View
Databases now have a "Dashboard" view type alongside Table, Board, Calendar, Timeline, List, and Gallery. Dashboard view combines charts, KPI cards, and metric summaries in a single pane.
Previously, the workaround was creating a page with multiple linked database views and third-party chart embeds. Dashboard view replaces that entire pattern with a native solution.
| View Type | Best For | Limitation | |---|---|---| | Table | Detailed row-level data, filtering, sorting | Poor for high-level summaries | | Board | Kanban workflows, status tracking | Only groups by one property | | Calendar | Date-based planning | Hard to see non-date properties | | Timeline | Gantt-style project planning | Complex to set up correctly | | Dashboard (new) | KPIs, charts, aggregate metrics | Chart customization is limited compared to dedicated BI tools |
Redesigned Sidebar
The sidebar now has four distinct tabs: Pages, Agent Chats, Meetings, and Notifications. You can toggle sections on or off depending on what you use. The old sidebar was a single scrollable list where everything lived together. The new structure separates your workspace into functional areas.
Presentation Mode
Hit Cmd+Opt+P (Mac) or Ctrl+Alt+P (Windows) on any page to enter presentation mode. The page content fills the screen, navigation disappears, and you can advance through sections. This competes directly with Google Slides and Keynote for internal presentations where you do not need complex animations or transitions.
Tabs Block
You can now add a tabs block to any page. Each tab is a container that holds its own blocks (text, databases, embeds, whatever). This solves the "long scrolling page" problem where different audiences need different sections of the same page.
Warning
Tabs blocks do not appear in page exports (PDF, Markdown) as of early April. If you rely on exporting pages, keep critical content outside of tabs or duplicate it in a non-tabbed section.
Archive
There is now a middle ground between keeping a page visible and permanently deleting it. Archiving removes the page from your sidebar and search results but preserves it with metadata showing who archived it and when. You can restore archived pages at any time. This is particularly useful for completed projects or outdated documentation that you might need to reference later.
Developer and API Updates
April brought a significant batch of API improvements that matter if you build on top of Notion programmatically.
/v1/views API
Eight new endpoints for managing database views. You can now create, read, update, and delete views programmatically. Before this, you had to manually set up views in the UI. For teams that provision Notion databases from templates or automation scripts, this closes a major gap.
Smart Filters
API filters now support "me" as a value for people properties (resolves to the authenticated user) and relative date values like "today", "tomorrow", "last_week". Previously you had to compute and inject absolute date strings, which was fragile for shared filter configurations.
Heading 4 Blocks
The API now supports H4 blocks. Notion previously only exposed H1 through H3. If you were building a documentation system on top of Notion and needed finer heading granularity, this was a hard blocker.
Common Pitfalls
- Assuming Workers can call any API: the domain allowlist is real. Test your external endpoints against the allowlist before building a Worker that depends on them.
- Mixing up presentation mode with Notion Slides: presentation mode works on any page. There is no separate "slides" document type. If you create a page with one section per H2, presentation mode will step through each section. But there are no slide templates, transitions, or speaker notes.
- Overloading Dashboard views: adding more than 6 to 8 chart widgets to a single Dashboard view makes it slow to load. Keep dashboards focused on one team or one metric domain.
- Voice input language support: as of April 2026, voice input works best in English. Other languages are supported but transcription accuracy drops noticeably for technical terminology.
What is Still Missing
Even with all these updates, there are gaps worth noting:
Wrapping Up
April 2026 is the month Notion stopped being "just" a docs and databases tool and started functioning as a platform. Workers for Agents, the Views API, and Dashboard view collectively mean you can build real internal tools on top of Notion without duct-taping five services together. The AI improvements (voice input, custom meeting instructions) are quality-of-life wins that reduce the friction of actually using the AI features day to day. If you have been on the fence about moving workflows into Notion, this is the release that closes most of the gaps.
Fazm is an open source macOS AI agent. Open source on GitHub.