Notion Update April 2026: 10 New Features and What They Actually Do

Matthew Diakonov··12 min read

Notion Update April 2026: 10 New Features and What They Actually Do

Notion's April 2026 update shipped ten distinct new features across AI, the developer API, and education. Some of these are incremental improvements. Others fundamentally change what Notion can do. This post covers each new feature, explains what it does in practice, and flags the rough edges that the changelogs leave out.

Key Takeaways

  • Workers for Agents gives Notion AI the ability to execute code, not just generate text
  • Voice input on desktop cuts AI prompt entry time significantly for complex requests
  • The Views API (8 new endpoints) lets developers manage database views programmatically for the first time
  • Smart filters support relative date references and "me" user targeting in API calls
  • Notion Academy expanded to six new languages, bringing the total to twelve

Complete List of New Features

| # | Feature | Category | What It Does | Availability | |---|---|---|---|---| | 1 | Workers for Agents | AI / Developer | AI agents can execute custom JavaScript/TypeScript code to query databases, call APIs, and compute results | Developer preview | | 2 | Voice input for AI prompts | AI / Input | Dictate prompts to Notion AI on macOS and Windows instead of typing | GA, desktop only | | 3 | AI meeting notes from Cmd+K | AI / Meetings | Capture meeting notes from the command palette without navigating away | GA | | 4 | Custom instructions for meeting notes | AI / Meetings | Define tone, section structure, length, and team context for all generated meeting summaries | GA, workspace admin | | 5 | Heading 4 blocks in API | Developer | Create and read H4 headings via the Notion API for finer content structure | GA | | 6 | Views API (8 endpoints) | Developer | Create, read, update, and delete database views programmatically | GA | | 7 | Tab block support in API | Developer | Read and write tab blocks through the SDK | GA | | 8 | Writable wiki verification | Developer | Set and update verification status on wiki pages via the API | GA | | 9 | Smart filters | Developer | Filter database queries by "me" (current user) and relative dates like "today" or "next week" | GA | | 10 | Notion Academy in 6 new languages | Education | Spanish, Portuguese, Japanese, Korean, French, German | GA |

Feature Deep Dives

1. Workers for Agents

This is the headline feature of the April 2026 update. Before Workers, Notion AI could generate, summarize, and edit text. It could not perform calculations, query databases precisely, or call external services. If you asked "What is our close rate this quarter?" the AI would approximate from whatever rows were visible. Now it can run a function that counts won vs. lost deals and returns an exact number.

Workers are JavaScript or TypeScript functions that run in a sandboxed environment. Notion's AI agents decide when to invoke a Worker based on the user's prompt, pass parameters, receive structured output, and incorporate the result into their response.

How Notion Workers for Agents Process a RequestUser Prompt"Close rate Q1?"AI AgentParses intentSelects Worker toolWorkerJS/TS execution30s limit, 128MBAPIallowlistNotion DatabaseRead/write accessresultStructured OutputFormatted responseAnswer"Close rate: 34%"Worker Constraints30-second execution timeout | 128MB memory capApproved domain allowlist for HTTP | No persistent state between calls

Current constraints: Workers are in developer preview. They run in a sandbox with a 30-second timeout, 128MB memory limit, and outbound HTTP restricted to an approved domain list. There is no persistent state between invocations. These constraints mean Workers suit lightweight tasks: API calls, data formatting, and calculations. Heavy data processing or long-running batch jobs will not work.

2. Voice Input for AI Prompts (Desktop)

Voice dictation for AI prompts is now available on macOS and Windows. Hold the designated keyboard shortcut, speak your prompt, and the transcription feeds directly into whatever AI action you have selected: summarize, rewrite, brainstorm, or free-form.

Why this matters in practice: a prompt like "rewrite this section for a technical audience and condense the three paragraphs about pricing into bullet points" takes about four seconds to say and much longer to type. The transcription latency is under one second. It works across all AI surfaces: inline AI, the sidebar chat, and meeting notes.

What it does not do: there is no continuous dictation mode for general text entry. This is specifically for AI prompt input. macOS system dictation (Fn key twice) still handles general text fields.

3 and 4. AI Meeting Notes Improvements

Two meeting notes features shipped together:

Cmd+K access: meeting notes are now available from the command palette. Press Cmd+K (or Ctrl+K on Windows), type "meeting notes," and start capturing. No need to navigate to a meetings page first. Notes save to your default meeting notes database.

Custom instructions: workspace admins can set a template that defines tone (formal, casual, technical), section structure (which headings appear and in what order), length (bullet points vs. paragraphs), and team context (department terminology, project names, abbreviations). Once set, every AI-generated meeting summary in the workspace follows the same format automatically.

5. Heading 4 Blocks in API

The Notion API now supports H4 (heading level 4) blocks. Previously, the API only supported H1 through H3, which limited developers building content-heavy applications. Adding H4 allows finer-grained document structure for automated content generation and migration tools.

6. Views API (8 Endpoints)

This is the most significant API update in the April release. Eight new endpoints let developers create, read, update, and delete database views programmatically. Before this, views could only be managed through the Notion UI.

| Endpoint | Method | What It Does | |---|---|---| | /v1/views | GET | List all views for a database | | /v1/views | POST | Create a new view | | /v1/views/ | GET | Retrieve a specific view | | /v1/views/ | PATCH | Update view configuration | | /v1/views/ | DELETE | Remove a view | | /v1/views//filters | GET | Get view filter settings | | /v1/views//sorts | GET | Get view sort settings | | /v1/views//properties | PATCH | Update visible properties and order |

Use cases include: syncing view configurations across workspaces, building custom dashboards that set up their own views, and automating view creation when new databases are provisioned.

7. Tab Block Support in API

Tab blocks (the UI component that lets you organize content into tabs within a page) can now be read and written through the SDK. This matters for developers building templates or content migration tools where tab-based layouts need to be preserved or created programmatically.

8. Writable Wiki Verification

Developers can now set the verification status of wiki pages via the API. Previously, verification (the checkmark that indicates a page has been reviewed) could only be set manually in the UI. This opens automated quality assurance workflows where a script verifies page content and marks it accordingly.

9. Smart Filters

API database queries now support two types of dynamic filters:

  • "Me" filter: filter by the current authenticated user without hardcoding user IDs. Useful for building personalized views that show "my tasks" or "assigned to me."
  • Relative date filters: filter by "today," "tomorrow," "this week," "next week," and similar relative references instead of absolute dates. Queries stay current without needing date updates.

10. Notion Academy in Six New Languages

Notion Academy, the official learning platform, expanded from six to twelve languages: adding Spanish, Portuguese, Japanese, Korean, French, and German. This does not affect the product itself but makes onboarding and training accessible to a broader user base.

Before and After: What Changed in This Update

| Area | Before April 2026 | After April 2026 | |---|---|---| | AI computation | Text-only. Approximated answers from visible context. | Workers execute real code against databases and APIs. | | AI prompt input | Keyboard typing only | Keyboard + voice dictation on macOS and Windows | | Meeting notes access | Navigate to dedicated page or sidebar | Cmd+K from any page | | Meeting notes consistency | Default format, varies by user | Custom instructions enforce uniform structure workspace-wide | | Database view management | UI-only | Full API support with 8 endpoints | | Heading granularity (API) | H1, H2, H3 | H1, H2, H3, H4 | | Date filtering (API) | Absolute dates only | Relative dates ("today", "this week") and "me" filter | | Wiki verification (API) | Read-only | Read and write | | Tab blocks (API) | Not accessible | Full read/write support | | Academy languages | 6 languages | 12 languages |

What Is Still Missing

Even with ten new features, several gaps remain in Notion's April 2026 update:

  • Mobile voice input: voice dictation for AI prompts is desktop-only. Mobile users, who frequently need quick meeting note capture, still type everything.
  • Worker persistent state: each Worker invocation starts from scratch. Multi-step workflows require external state management, which defeats the purpose of keeping everything in Notion.
  • Cross-workspace agents: AI agents are scoped to a single workspace. Organizations running multiple Notion workspaces cannot create agents that span them.
  • Offline AI: all AI operations require an internet connection, including text rewrites that could theoretically run locally.
  • Cross-application workflows: Workers only operate inside the Notion ecosystem. Real workflows that span Notion, Slack, a CRM, and email still require external tooling.

When Workflows Go Beyond Notion

Notion's April 2026 update makes it significantly more capable within its own ecosystem. But the moment your workflow crosses application boundaries (draft in Notion, check Slack, update a CRM, send a follow-up email) you need something that operates at the desktop level.

Desktop AI agents fill this gap by controlling your actual computer. They navigate between applications the same way you would: reading screens, clicking interfaces, and transferring information across tools. No per-application API integrations or Workers required.

Tip

If your workflows span Notion plus other tools, Fazm automates the full chain by controlling your desktop directly. No API keys or custom Workers needed. Open source on GitHub.

Frequently Asked Questions

What are the biggest new features in the Notion April 2026 update?

Workers for Agents and the Views API are the most significant additions. Workers give AI agents the ability to execute code and compute real results from database queries. The Views API lets developers manage database views programmatically for the first time with eight new endpoints.

Is the Notion April 2026 update available now?

Most features are generally available as of April 2026. Workers for Agents is in developer preview, meaning you need to opt in through Notion's developer portal. All other features are live for all users on current Notion plans.

Does the Notion update include voice input on mobile?

No. Voice dictation for AI prompts is currently available on macOS and Windows desktop only. Mobile voice input has not been announced.

What programming languages do Notion Workers support?

Workers support JavaScript and TypeScript. They run in a sandboxed environment with a 30-second timeout, 128MB memory limit, and restricted outbound HTTP to approved domains.

Can I use the new Views API to duplicate views across workspaces?

Yes. The Views API supports reading view configurations (filters, sorts, visible properties) from one database and creating matching views in another. This enables workspace migration and template provisioning workflows.

This page covers every new feature in the Notion April 2026 update. Last updated April 10, 2026.

Fazm is an open source macOS AI agent. Open source on GitHub.

Related Posts