Speechify Updates & Release Notes

Follow

68 updates curated from 75 sources by the Releasebot Team. Last updated: Jul 14, 2026

Get this feed:
  • Jul 9, 2026
    • Date parsed from source:
      Jul 9, 2026
    • First seen by Releasebot:
      Jul 14, 2026
    Speechify logo

    Speechify

    API: list available TTS models with GET /v1/audio/models

    Speechify adds a GET /v1/audio/models endpoint for listing available text-to-speech models at runtime, including model IDs, names, descriptions, default and recommended flags, and supported languages for easier model picker setup.

    API: list available TTS models with GET /v1/audio/models

    GET /v1/audio/models returns the text-to-speech models you can pass as the model parameter, so you can populate a model picker at runtime instead of hardcoding the list.

    Each entry carries the model id, a human-readable name and description, a default flag (the model used when a request omits model), a recommended flag (the model we suggest for new integrations - distinct from the default, which stays stable for backwards compatibility), and the languages it can synthesize (BCP-47 locale strings). The catalog is returned in a single response and is not paginated. These values reflect current support and can change over time, so read them at runtime rather than caching them.

    Models

    • { "id": "simba-english", "name": "Simba English", "default": true, "recommended": false, "description": "English-only synthesis; the model used when a request omits model.", "languages": ["en"] }
    • { "id": "simba-multilingual", "name": "Simba Multilingual", "default": false, "recommended": false, "description": "Synthesis across 30+ languages, including mixed-language input.", "languages": ["en", "fr-FR", "de-DE", "es-MX", "…"] }
    • { "id": "simba-3.0", "name": "Simba 3.0", "default": false, "recommended": false, "description": "Earlier streaming-native model, English only. Superseded by simba-3.2.", "languages": ["en"] }
    • { "id": "simba-3.2", "name": "Simba 3.2", "default": false, "recommended": true, "description": "Streaming-native model with the lowest time-to-first-byte and richest expressivity, English only today.", "languages": ["en"] }
    Original source
  • Jul 9, 2026
    • Date parsed from source:
      Jul 9, 2026
    • First seen by Releasebot:
      Jul 14, 2026
    Speechify logo

    Speechify

    API: list available TTS models with `GET /v1/audio/models`

    Speechify adds GET /v1/audio/models to list available TTS models.

    API: list available TTS models with GET /v1/audio/models

    Original source
  • All of your release notes in one feed

    Join Releasebot and get updates from Speechify and hundreds of other software products.

    Create account
  • Jul 8, 2026
    • Date parsed from source:
      Jul 8, 2026
    • First seen by Releasebot:
      Jul 14, 2026
    Speechify logo

    Speechify

    API: New simba-3.2 streaming model (recommended)

    Speechify adds the simba-3.2 streaming TTS model on its audio speech and stream APIs, with lower TTFB, richer expressivity, and a curated English voice allow-list for new integrations.

    API: New simba-3.2 streaming model (recommended)

    simba-3.2 is now available on POST /v1/audio/speech and POST /v1/audio/stream via the model field. It is the go-forward Simba 3 model — streaming-native, with lower TTFB and richer expressivity than simba-3.0. We recommend simba-3.2 for new English integrations.

    simba-3.2 serves from a curated voice allow-list. Pass one of its registered voice IDs as voice_id: beatrice_32, dominic_32, edmund_32, geffen_32, harper_32, hugh_32, imogen_32, wyatt_32.

    Example JSON:

    {
      "input": "Hello, world!",
      "voice_id": "geffen_32",
      "model": "simba-3.2"
    }
    

    Currently English only — multilingual coming soon

    simba-3.2 currently supports English voices only. Requests with a non-English voice return 400 with the rejected locale called out in the message. Multilingual support is coming soon; the model name stays simba-3.2 across that change, so no migration is required.

    For non-English voices today, continue to use simba-multilingual. For cloned or personal voices, use simba-english — those are not registered under the Simba 3 voice allow-list.

    Original source
  • Jun 28, 2026
    • Date parsed from source:
      Jun 28, 2026
    • First seen by Releasebot:
      Jul 14, 2026
    Speechify logo

    Speechify

    API: voice-gender value notSpecified is now not_specified

    Speechify renames the API voice gender value from notSpecified to not_specified, bringing the gender vocabulary into consistent snake_case across voice endpoints while keeping male and female unchanged.

    API: voice-gender value notSpecified is now not_specified

    The voice-gender enum value notSpecified is renamed not_specified so the gender vocabulary is consistent snake_case across the API. This affects the gender field on GET /v1/voices, GET /v1/voices/{voice_id}, and POST /v1/voices (request enum and response), and the male / female values are unchanged.

    Before (pin 2026-06-27 or earlier): the unspecified gender is notSpecified.

    After (2026-06-28+): the unspecified gender is not_specified.

    Migrating

    Treat the unspecified gender as not_specified. Callers that pin a Speechify-Version date of 2026-06-27 or earlier continue to receive notSpecified; the official SDKs pin their build date automatically.

    Original source
  • Jun 28, 2026
    • Date parsed from source:
      Jun 28, 2026
    • First seen by Releasebot:
      Jun 28, 2026
    Speechify logo

    Speechify

    API: voice-gender value `notSpecified` is now `not_specified`

    Speechify updates its voice gender API to use consistent snake_case, renaming the unspecified enum value to not_specified across voice endpoints while keeping male and female unchanged. Version-pinned clients can still receive the legacy value for older dates.

    The voice-gender enum value notSpecified is renamed not_specified so the gender vocabulary is consistent snake_case across the API. This affects the gender field on GET /v1/voices, GET /v1/voices/{voice_id}, and POST /v1/voices (request enum and response), and the male/female values are unchanged.

    Before (pin 2026-06-27 or earlier): the unspecified gender is notSpecified.

    After (2026-06-28+): the unspecified gender is not_specified.

    Migrating

    Treat the unspecified gender as not_specified. Callers that pin a Speechify-Version date of 2026-06-27 or earlier continue to receive notSpecified; the official SDKs pin their build date automatically.

    Original source
  • Similar to Speechify with recent updates:

  • Jun 27, 2026
    • Date parsed from source:
      Jun 27, 2026
    • First seen by Releasebot:
      Jul 14, 2026
    Speechify logo

    Speechify

    API: GET /v1/voices returns an object envelope

    Speechify updates GET /v1/voices to return an object envelope with voices, next_cursor, and has_more, adding optional pagination while keeping full catalog results by default and preserving legacy array responses for older version pins.

    API: GET /v1/voices returns an object envelope

    GET /v1/voices now returns an object envelope instead of a bare JSON array, so the list can carry pagination and future sibling fields without another breaking change.

    Before (pin 2026-06-26 or earlier): a bare array of voice objects.

    After (2026-06-27+):

    {
      "voices": [ { "id": "george", "display_name": "George", "...": "..." } ],
      "next_cursor": null,
      "has_more": false
    }
    

    By default the full catalogue is returned in a single response (next_cursor is null). Pagination is opt-in: pass limit (and then cursor from the previous response) to page through the list while has_more is true.

    Migrating

    Read the array from the voices field instead of treating the response body as the array. Callers that pin a Speechify-Version date of 2026-06-26 or earlier continue to receive the legacy bare array; the official SDKs pin their build date automatically.

    Original source
  • Jun 27, 2026
    • Date parsed from source:
      Jun 27, 2026
    • First seen by Releasebot:
      Jun 27, 2026
    Speechify logo

    Speechify

    API: `GET /v1/voices` returns an object envelope

    Speechify updates the Voices API with an object envelope that adds pagination support and room for future fields, while keeping pinned older clients on the legacy array response. Developers can now read voices from the voices field and page with limit and cursor when needed.

    GET /v1/voices now returns an object envelope instead of a bare JSON array, so the list can carry pagination and future sibling fields without another breaking change.

    Before (pin 2026-06-26 or earlier): a bare array of voice objects.

    After (2026-06-27+):

    {
      "voices": [ { "id": "george", "display_name": "George", "...": "..." } ],
      "next_cursor": null,
      "has_more": false
    }
    

    By default the full catalogue is returned in a single response (next_cursor is null). Pagination is opt-in: pass limit (and then cursor from the previous response) to page through the list while has_more is true.

    Migrating

    Read the array from the voices field instead of treating the response body as the array. Callers that pin a Speechify-Version date of 2026-06-26 or earlier continue to receive the legacy bare array; the official SDKs pin their build date automatically.

    Original source
  • Jun 25, 2026
    • Date parsed from source:
      Jun 25, 2026
    • First seen by Releasebot:
      Jul 14, 2026
    Speechify logo

    Speechify

    API version pinning with Speechify-Version

    Speechify adds date-based API version pinning with the Speechify-Version header.

    API version pinning with Speechify-Version

    The API now supports date-based version pinning with the Speechify-Version request header.

    • Current version: 2026-06-25
    • Header format: YYYY-MM-DD
    • Resolution order: request header, workspace default, oldest supported version
    • Migration path: official SDKs pin their build-date version automatically; raw HTTP callers should send Speechify-Version explicitly.

    No existing TTS response shape changed in this release. Future breaking wire-format changes will publish a dated changelog entry with the legacy shape, the new shape, and the sunset date.

    Original source
  • Jun 25, 2026
    • Date parsed from source:
      Jun 25, 2026
    • First seen by Releasebot:
      Jun 27, 2026
    Speechify logo

    Speechify

    API version pinning with `Speechify-Version`

    Speechify adds date-based API version pinning with the Speechify-Version header for safer migrations and explicit raw HTTP control.

    The API now supports date-based version pinning with the Speechify-Version request header.

    Current version: 2026-06-25

    Header format: YYYY-MM-DD

    Resolution order: request header, workspace default, oldest supported version

    Migration path: official SDKs pin their build-date version automatically; raw HTTP callers should send Speechify-Version explicitly.

    No existing TTS response shape changed in this release. Future breaking wire-format changes will publish a dated changelog entry with the legacy shape, the new shape, and the sunset date.

    Original source
  • Jun 11, 2026
    • Date parsed from source:
      Jun 11, 2026
    • First seen by Releasebot:
      Jun 25, 2026
    Speechify logo

    Speechify

    Speechify Featured by Microsoft CEO Satya Nadella at Microsoft Build 2026

    Speechify releases its first Windows app, expanding its voice AI platform across Windows, iOS, Android, Mac, web, and Chrome Extension. Built with Microsoft and chip partners, it brings on-device AI to more users.

    Speechify was featured by Microsoft CEO Satya Nadella at Microsoft Build 2026, five months after launching its first Windows app with no Windows developers on the team.

    Five months ago, Speechify had no Microsoft Windows app and no Windows developers on the team. This week, Satya Nadella, CEO of Microsoft, featured Speechify in the opening keynote address at Microsoft Build 2026.

    The recognition reflects what the Speechify team built in a remarkably short window: a desktop app for Windows developed in close collaboration with the teams at Microsoft, Qualcomm, NVIDIA, Intel, and AMD, designed to work across multiple chip architectures and help push forward the promise of on-device AI.

    "Proud of the team for shipping an amazing desktop app for Windows, working closely with the teams at Microsoft, Qualcomm, NVIDIA, Intel, and AMD, to make this work across several chips and help push forward the promise of on-device AI," said Rohan Pavuluri, Chief Business Officer of Speechify. "AI will live both on-device and in the cloud in the future."

    Pavan Davuluri, Executive Vice President of Windows and Devices at Microsoft, responded directly to the announcement. "This is an inspiring story for everyone who benefits from great apps on Windows and we are proud to be a part of your journey," Davuluri said. "Congrats to the Speechify team."

    The Windows app was built by a team that came together quickly and executed without an existing Windows engineering practice to build from. Ivan Derevianko, Speechify's first Windows developer, led the engineering work alongside Raheel K. and Aaditya Sahay. The partnership with Baldwin N. at Microsoft and Pavan Davuluri's team provided the cross-organizational support needed to bring the app to life across the breadth of hardware configurations that define the Windows ecosystem.

    The Build keynote recognition is significant not only as a milestone for Speechify's platform expansion but as a signal of where voice AI and on-device intelligence are headed. Microsoft Build 2026, streamed live from San Francisco, brought together the AI and developer community to explore what Nadella described as new opportunities in the age of AI. Being featured in that context positions Speechify alongside the most significant technology companies building on and for the Windows platform.

    Speechify is now available on Windows and across iOS, Android, Mac, web, and the Chrome Extension. The Windows app joins a platform serving more than 60 million users worldwide in more than 270 countries. Learn more at speechify.com.

    About Speechify

    Speechify is the world's largest consumer voice AI platform, serving more than 60 million users across more than 270 countries with natural-sounding voice technology in more than 60 languages. In 2025, Speechify received the Apple Design Award at WWDC, recognized as a critical resource for accessibility and productivity. The same voice technology that powers Speechify's consumer platform now powers SIMBA Voice Agents, Speechify's enterprise AI voice agent platform built for businesses deploying conversational AI across customer support, lead qualification, outbound sales, and reception. Learn more at speechify.com and simbavoice.ai.

    Original source
  • Jun 8, 2026
    • Date parsed from source:
      Jun 8, 2026
    • First seen by Releasebot:
      Jun 11, 2026
    Speechify logo

    Speechify

    Speechify Launches Speechify Work, Giving Knowledge Workers a Team of AI Agents That Executes Work on Their Behalf

    Speechify launches Speechify Work, a new AI agent workspace in its web and mobile apps that lets users delegate research, reports, presentations, spreadsheets, and other tasks, then save finished deliverables to a shared cloud library.

    Learn how Speechify Work helps you delegate research, reports, and tasks to AI agents instead of just chatting.

    Speechify today announced the launch of Speechify Work, a powerful new functionality built directly into the Speechify web and mobile apps that gives knowledge workers a dedicated team of AI agents capable of executing complex professional tasks on their behalf. Rather than functioning as a chat interface where users prompt and refine in a back-and-forth loop, Speechify Work is built around delegation. Users define what they need, assign it to their agent team, and receive polished, finished deliverables saved directly to their Speechify library.

    Once users open the Speechify app on web or mobile, Speechify Work is the new core central feature they land on. Speechify Work enables professionals to delegate the full execution of tasks including market and competitive research, PowerPoint presentations, Excel spreadsheets, PDF reports, strategic memos, recurring scheduled briefings, browser-based research, and large-scale document analysis. All outputs are saved to a unified, cloud-based library inside Speechify that is instantly accessible across web and mobile, with sharing and collaboration built in. For executives, consultants, analysts, marketers, operators, and founders whose daily work requires producing and communicating large amounts of information, this is a fundamentally different relationship with AI than anything currently available from the products they have used before.

    What Is Speechify Work and Why Does It Represent a Different Kind of AI Experience?

    Most people still experience AI as something you chat with. You open a tab, type a question, read the response, and iterate. That loop is useful, but it places the user in the role of operator rather than delegator. The user is doing work with AI rather than having AI do work for them. Speechify Work changes that dynamic in a way that most knowledge workers have not yet experienced. You assign work to a team of agents. They research, write, build, and deliver. You define the goal and review the output. That division of labor is what professionals have always wanted from their tools, and it has only become reliably possible in the last several months.

    On mobile, Speechify Work opens with a single prompt at the top of the screen: "What do you want to work on today?" with a task input field, a voice button for dictation, and a set of quick-start actions including Apps, Import a File, Scan, Read Aloud, AI Podcast, and Meetings. On web, the experience centers on "Delegate your work," with a full task library on the left sidebar showing completed and in-progress agent tasks, and quick-start tiles including Listen to File, Paste Text, Summary, and Create a Podcast on the right. Both interfaces are designed so that a new user can begin delegating work within seconds of opening the app, with no setup, no download, and no blank page.

    The underlying capability shift is real and recent. Only in the last several months has it become possible to build agent systems capable of fully executing multi-step professional tasks at the quality level knowledge workers actually require. Agents that can plan a research workflow, gather information from multiple sources, synthesize findings, produce a structured document, and deliver it as a finished asset represent a genuinely different capability from anything that was available before 2026. Speechify Work is built on top of that shift, with a product experience designed from the start around delegation rather than conversation.

    This distinction matters for one important reason. The overwhelming majority of knowledge workers have not yet had the experience of assigning work to an AI team and receiving a finished deliverable without staying in the loop. The products they have used have required them to remain engaged throughout, prompting, reviewing, copying, and assembling. Speechify Work offers a different experience, and the pitch is simple: you have a team that works for you.

    What Can Speechify Work Agents Produce?

    Speechify Work agents can produce a wide range of professional deliverables. Research reports and strategic memos bring together information from web sources and uploaded documents into a structured, sourced summary of any topic. PowerPoint presentations and slide decks can be delegated entirely, with agents handling research, structure, and production. Excel spreadsheets and analytical workbooks let users delegate data organization without spending time on mechanical production. PDF reports and briefing documents produce polished, professionally formatted written outputs for any professional purpose. Podcasts can be generated from any content agents produce, taking advantage of Speechify's audio capabilities to turn written outputs into listenable audio episodes. Recurring scheduled tasks let users set up daily or weekly briefings that agents execute automatically on a defined schedule, delivering fresh, research-backed reports to the Speechify library without any manual effort after the initial setup.

    Agents draw from documents, images, spreadsheets, slide decks, and other files users upload directly to Speechify Work, as well as conducting web research to gather current information. Every output is saved to the user's Speechify library as a formatted, shareable asset, not a chat thread to scroll back through, but a finished deliverable in an organized, searchable library. The web interface shows this library in action, with real completed tasks visible in the sidebar including competitive research reports, daily briefings, and industry digests, all saved and accessible across every device.

    How Speechify Work Compares to Claude Cowork, Perplexity Computer, Manus, and Codex

    Speechify Work enters a new and rapidly forming category of AI agent products alongside Claude Cowork from Anthropic, Codex from OpenAI, Perplexity Computer from Perplexity, and Manus. Each of these products is attempting to move AI from conversation toward execution. Speechify Work differentiates from all of them in ways that matter substantially for the professionals it is built to serve.

    Speechify Work is web and mobile first with no desktop friction. It is built into the existing Speechify web and mobile apps with no new download, no new account, and no context-switching required. Claude Cowork requires downloading the Claude desktop app and navigating between Claude, Cowork, and Claude Code within that environment. Codex follows a similar pattern, sitting inside a product experience built primarily around the core ChatGPT interface, available primarily for users who navigate past that entry point. Perplexity Computer centers its core experience around the Perplexity chat interface, with computer use as a secondary capability. Speechify Work puts agent delegation front and center on both web and mobile from the first moment a user opens the app.

    Agents working for non-engineering knowledge workers is the front-and-center experience in Speechify Work in a way that is not the case for any of its competitors. Claude Cowork and Codex are both heavily oriented toward engineering tasks, with Claude Code as a central product offering and Codex designed specifically for software development. Even for non-coding tasks, the experience in these products is built with an engineering user in mind. Manus is a powerful general-purpose agent tool but similarly skews toward technical users comfortable operating without structured guidance. Speechify Work makes non-engineering professional work the defining use case rather than an afterthought.

    Speechify Work has a fully functional library of all the assets agents create. This is one of the most practically significant differentiators. Every output Speechify Work agents produce is saved to a cloud-based library inside Speechify that is organized, searchable, and accessible across all devices. Instead of receiving a response in a chat thread that disappears when the conversation ends, users receive a structured asset in a library they can return to, build on, share, and search. This architecture also enables recurring tasks like daily briefings that show up in the library on a schedule, a use case that requires persistent, organized asset storage of the kind that Claude Cowork, Codex, Perplexity Computer, and Manus do not currently replicate.

    Speechify Work has superior sharing and collaboration built around the assets agents create. Because the product is organized around a library of deliverables rather than a chat interface, sharing any agent-produced output with a colleague, client, or stakeholder is structurally simple. Users share assets directly from their Speechify library without exporting, copying, or reformatting.

    Speechify Work has clear on-ramps that solve the blank page problem. Users are presented with structured starting points that guide them toward productive agent tasks immediately. They can select from defined output types like reports, slide decks, spreadsheets, and podcasts and be walked through a short parameter-setting process rather than confronting an empty text field. Claude Code and Codex in particular provide minimal structure and assume a high level of familiarity with agent-based prompting, which is a significant barrier for the non-engineering knowledge workers Speechify Work is built to serve.

    Speechify Work has opinionated features built around what Speechify users value most, including the best text to speech and audio experience in the market, quiz generation from any content, and podcast creation from any agent output. These capabilities go significantly deeper than anything the comparable products offer. At the same time, Speechify Work does not require users to engage with audio features. As the product grows into a mass-market tool, the majority of users will likely use it without ever engaging with text to speech, and the product is designed to be fully valuable in that mode.

    Speechify Work provides access to multiple models from ChatGPT, Claude, and Google Gemini through a single Speechify subscription. Users are not locked into one provider's strengths and can benefit from the capabilities of multiple frontier models without managing separate subscriptions or accounts.

    Who Speechify Work Is Built For

    Speechify Work is designed for knowledge workers across a wide range of professional contexts. The common thread is that their work requires regularly producing, analyzing, and communicating large amounts of information, and that the execution layer of that work is something AI agents can meaningfully take over.

    Executives and founders who need regular competitive intelligence, market briefings, board materials, and strategic summaries can assign those recurring tasks to their agent team and receive finished outputs on a schedule. Consultants and professional services firms whose core output is research, analysis, and presentation can delegate the production layer to agents and focus their time on strategic interpretation and client relationships. Analysts and researchers at investment firms, corporate strategy teams, and academic institutions can hand data-gathering, synthesis, and report-writing workflows to agents and redirect capacity toward higher-order analytical work. Marketing and communications teams that produce regular content, briefings, and campaign materials can delegate production workflows to agents and maintain output velocity without proportionally expanding headcount. Operations leaders, chiefs of staff, and team managers can use Speechify Work to produce internal briefings, status reports, and knowledge summaries that would otherwise require significant manual time to compile and distribute.

    How Speechify Work Fits Into the Broader Speechify Platform

    Speechify Work is not a standalone product. It is a new and powerful functionality built into a platform that already serves more than 50 million users worldwide through a suite of integrated voice and productivity tools.

    The existing Speechify platform includes Text to Speech, which converts any written content into natural audio using over 1,000 voices in 60 plus languages. It includes Voice Typing Dictation, a free and unlimited dictation tool that works across any app or website. It includes the Voice AI Assistant, which lets users ask questions, summarize documents, and conduct research through natural voice conversation. It includes AI Podcasts, which turns any written content into listenable audio shows. Speechify Work extends this platform by adding the ability to delegate full professional workflows to a team of agents.

    The library that anchors Speechify Work integrates with this broader ecosystem in ways that compound its value. A report produced by Speechify Work agents can be converted to audio using Text to Speech, turned into a podcast, used to generate a quiz for comprehension and retention, or shared with a team, all without leaving the Speechify environment and without switching to a separate tool for each step.

    A Broader Signal for the Future of Knowledge Work

    The launch of Speechify Work reflects a bet on a specific and significant shift in how professionals will interact with AI over the next several years. The chat-first paradigm that has defined the current AI wave requires sustained user engagement throughout the process. The agentic paradigm Speechify Work is built on requires only that the user define the goal. Everything between the goal and the deliverable is handled by the agent team.

    Speechify believes this shift from AI as assistant to AI as workforce is one of the most economically transformative applications of the technology, particularly for non-engineering professionals whose workflows have historically been the last to benefit from automation. With Speechify Work now available inside the Speechify web and mobile apps, those professionals have access to a dedicated agent team for the first time, built into a platform they may already use every day, with no new download required and a library of finished deliverables waiting for them whenever they open the app.

    About Speechify

    Speechify is a leading AI voice and productivity platform serving more than 50 million users worldwide. Its product ecosystem includes Text to Speech, Voice Typing Dictation, AI Podcasts, the Voice AI Assistant, and Speechify Work, a new AI agent functionality that allows professionals to delegate complex knowledge work to a team of agents. In 2025, Speechify received the Apple Design Award at WWDC, recognized as a critical resource for accessibility and productivity. Speechify is available across iOS, Android, Mac, Windows, web, and the Chrome Extension, and features 1,000 plus natural-sounding voices in over 60 languages. Learn more at speechify.com.

    Original source
  • Jun 5, 2026
    • Date parsed from source:
      Jun 5, 2026
    • First seen by Releasebot:
      Jun 11, 2026
    Speechify logo

    Speechify

    Speechify Launches Voice Typing Dictation on iOS and Mac, Bringing Free Unlimited AI-Powered Dictation to Every App on Your Devices

    Speechify launches Voice Typing on iOS and Mac, bringing free unlimited dictation across apps with AI auto-editing that removes filler words, fixes grammar and punctuation, and turns natural speech into polished text in real time.

    Speechify launches Voice Typing on iOS and Mac, a free unlimited dictation tool that writes across any app at 160 words per minute with AI auto-editing.

    Speechify today announced the launch of Speechify Voice Typing on iOS and Mac, a free and unlimited voice dictation tool that lets users write using their voice across any app on their devices. Unlike basic dictation tools that transcribe speech and leave the cleanup to the user, Speechify Voice Typing uses AI to automatically remove filler words, correct grammar, fix punctuation, and format sentences in real time, delivering clean, polished text from natural speech without any editing required after the fact.

    The product is available now as a custom iOS keyboard that works across every app on iPhone, and as a Mac desktop application that activates from the dock with a single keyboard shortcut. Speaking is three to five times faster than typing for most people, and Speechify Voice Typing is built to capture that speed advantage across the full range of apps professionals and students use every day, from Gmail and Slack to Google Docs, Notion, Messages, ChatGPT, and more.

    What Speechify Voice Typing Does and How It Works

    Speechify Voice Typing works by installing as a custom keyboard on iOS and as a floating microphone button on Mac. On iPhone, users switch to the Speechify keyboard in any app, tap the microphone button, and begin speaking. The keyboard listens, transcribes, and delivers clean text into whatever field is active, whether that is a Slack message, an email, a note, a search bar, or a form. The process shown in the product is a three-step experience: the keyboard appears, the listening state activates with a visible audio waveform and a blue confirmation button, and the finished, clean text populates the input field. The entire loop takes seconds.

    On Mac, Speechify Voice Typing lives in the dock as a persistent microphone button. Users hold the fn key to begin dictating, speak naturally into their microphone, and watch clean text appear in whatever application has focus, whether that is Apple Notes, Microsoft Word, Outlook, Notion, Google Docs, or any other text field on the desktop. The Mac version integrates across the full desktop environment without requiring users to switch applications or change their workflow.

    The AI auto-editing layer is what separates Speechify Voice Typing from basic transcription. When someone speaks naturally, they say filler words, restart sentences, and use imprecise punctuation that reflects speech rhythm rather than written structure. Speechify's AI layer processes the transcription in real time and delivers output that reads as written text rather than spoken text. The result is that users can dictate at the natural pace and register of spoken language and receive clean, professional output without a separate editing pass.

    Who Speechify Voice Typing Is Built For

    Speechify Voice Typing is designed for anyone who needs to produce written content regularly and wants a faster, lower-friction alternative to typing. The product is relevant across a wide range of professional and personal contexts.

    For professionals, Voice Typing means drafting emails, writing reports, replying to Slack messages, and producing documents at the speed of speech rather than at keyboard speed. A professional who types at 40 words per minute and speaks at 160 words per minute can produce written output four times faster by dictating, and Speechify's AI editing layer means that output requires no cleanup.

    For students, Voice Typing enables note-taking, essay drafting, and study documentation without the friction of typing, which is particularly valuable when capturing ideas quickly or working across multiple tasks simultaneously.

    For users with ADHD, dyslexia, or other conditions that make typing slower or more difficult, Voice Typing represents a meaningful accessibility improvement. Writing by voice removes the physical and cognitive overhead of translating thoughts into typed keystrokes, making written communication more accessible for users who experience that process as a significant barrier.

    For multitaskers, dictation allows users to write while doing other things, replying to messages while commuting, capturing ideas while walking, or drafting content while their hands are occupied elsewhere. The cross-platform availability of Speechify Voice Typing means this capability follows users across their iPhone and Mac desktop without any loss of functionality.

    For creators, Voice Typing means capturing scripts, captions, ideas, and draft content at the speed they occur rather than at the speed of typing, reducing the gap between thinking and producing.

    Where Speechify Voice Typing Works

    One of the defining characteristics of Speechify Voice Typing is its universal compatibility. On iOS, the Speechify keyboard works wherever the standard iOS keyboard works. This includes native Apple apps like Messages, Mail, Notes, and Safari, as well as third-party apps including Gmail, Slack, Notion, Google Docs, ChatGPT, WhatsApp, LinkedIn, Twitter, and every other app that accepts keyboard input. There is no integration required and no special mode to activate. Users install the Speechify keyboard, enable it in settings, and dictate in any app from that point forward.

    On Mac, Speechify Voice Typing works as a system-level tool that functions across the full desktop environment. Whether a user is writing in Apple Notes, composing in Outlook, editing in Google Docs through Chrome, messaging in Slack, or working in Notion, the Speechify microphone button activates from the dock and delivers dictated text into whichever application is in focus. The Mac setup process takes minutes and requires no per-app configuration.

    The product is also SOC 2 Type II compliant, meaning it meets strict industry standards for security, availability, and data protection. User content is not stored or sold, which is a material consideration for professionals and enterprises using voice input for sensitive communications.

    How Speechify Voice Typing Compares to Every Major Competitor

    The voice dictation and transcription market includes a range of products across different price points and capability levels. Speechify Voice Typing differentiates from each of them in meaningful ways.

    Dragon by Nuance has historically been the gold standard for professional desktop dictation, offering high accuracy and deep integration with desktop applications. Dragon is a paid product with a significant upfront cost, requires installation and setup time, and is primarily a desktop experience with limited mobile functionality. Speechify Voice Typing is free, installs in minutes, works across both iOS and Mac, and adds an AI auto-editing layer that Dragon does not offer natively.

    Apple Dictation is built into iOS and macOS and available to all Apple users at no cost. It provides basic transcription without AI-powered cleanup, meaning the output reflects raw speech including filler words, imprecise punctuation, and the structural patterns of spoken rather than written language. Speechify Voice Typing processes the transcription through an AI layer before delivering it, producing cleaner output without a post-dictation editing pass. Apple Dictation also does not work as a standalone keyboard product on iOS with the same cross-app flexibility that the Speechify keyboard provides.

    Wispr Flow is an AI dictation tool for Mac that has gained significant attention in the productivity community. It offers AI-cleaned transcription similar to Speechify's approach and works across Mac applications. Wispr Flow is a paid product after its trial period and is desktop-only with no iOS keyboard equivalent. Speechify Voice Typing offers a comparable AI-cleaned dictation experience on Mac while also providing the iOS keyboard, making it a more complete solution for users who move between phone and desktop throughout their day.

    Google Docs Voice Typing is a free tool built into Google Docs that provides dictation within the Google Docs environment specifically. It does not work outside of Google Docs, does not function as a system-level keyboard, and does not apply AI editing to the transcription output. Speechify Voice Typing works across every app on iOS and Mac and adds AI auto-editing that Google's built-in tool does not provide.

    Microsoft Dictate, available through Microsoft 365 applications, provides dictation within the Microsoft Office suite including Word, Outlook, and OneNote. Like Google's offering, it is limited to the Microsoft application ecosystem and does not function as a universal keyboard across other apps. Speechify Voice Typing is app-agnostic and works across the full range of apps a user might need.

    Otter.ai is a transcription and note-taking product primarily oriented toward meeting and conversation transcription rather than real-time dictation for writing. It is a strong product for capturing spoken content from meetings and calls but is not designed as a dictation keyboard for use across apps in the way Speechify Voice Typing is. Otter.ai is also a paid product for most meaningful use cases.

    Whisper from OpenAI is a speech recognition model that has been integrated into various applications and tools. It provides high-accuracy transcription but requires implementation either through the API or through third-party apps that have built on top of it. It is not a consumer-facing keyboard or dictation product in the same sense as Speechify Voice Typing.

    Rev is a transcription service that provides high-accuracy human and AI transcription for recorded audio files. It is oriented toward post-production transcription of recorded content rather than real-time dictation for writing across apps, and it is a paid service.

    Windows Speech Recognition and the newer voice access features in Windows 11 provide system-level dictation on Windows devices but have no iOS equivalent and are limited to the Windows operating system. Speechify Voice Typing covers iOS and Mac in a unified product experience.

    Other AI writing and productivity tools including Notion AI, Grammarly, and similar products help users refine and edit written content but are not dictation tools in the primary sense. They work on content that has already been typed rather than capturing voice input as the primary writing mechanism.

    The Setup and Onboarding Experience

    Getting started with Speechify Voice Typing on iOS follows a structured onboarding flow designed to walk users through keyboard installation and microphone permissions in a few clear steps. Users are prompted to enable the Speechify Voice Keyboard in iOS Settings, grant microphone access so the keyboard can capture speech, and then begin dictating. The onboarding communicates clearly that Speechify does not store or sell the content of what users say, and that microphone access is required only to enable the speech-to-text functionality. Once setup is complete, the keyboard is available in every app on the device immediately.

    On Mac, the setup involves downloading the Speechify desktop application, which places the microphone button in the dock and enables the fn key shortcut for activation. Users can begin dictating in any desktop application within minutes of installation. The Mac version also integrates visually into the desktop environment in an unobtrusive way, floating as a persistent but minimal element that activates only when the user initiates dictation.

    How Speechify Voice Typing Fits Into the Broader Speechify Platform

    Speechify Voice Typing is one component of a broader voice-first productivity platform that now serves more than 55 million users worldwide. The Speechify platform includes Text to Speech that converts any written content into natural audio, a Voice AI Assistant for research and answers through natural voice conversation, AI Podcasts that turn any content into listenable audio episodes, and Speechify Work, a functionality that gives users a team of AI agents to delegate professional research, reports, slide decks, and other deliverables to.

    Voice Typing fits into this ecosystem as the input layer of the voice productivity stack. Text to Speech handles output, converting written content into audio. Voice Typing handles input, converting spoken words into clean written text. Together they form a complete voice interface for the written layer of professional and personal communication, enabling users to both consume and produce written content entirely through voice if they choose to.

    The availability of Voice Typing as a free product reflects Speechify's mission of making voice-first productivity accessible to all users, including the more than two billion people worldwide with conditions including dyslexia, ADHD, visual impairments, autism, anxiety, and second-language learning challenges that make traditional typing a more difficult and less efficient form of communication.

    The AI Auto-Editing Layer in Detail

    The feature that most distinguishes Speechify Voice Typing from the broader field of dictation tools is its AI auto-editing layer, which processes transcription output before delivering it to the user. Understanding what this does in practice helps explain why it represents a meaningful improvement over tools that provide raw transcription.

    When people speak naturally, they produce language structured for listening rather than reading. Sentences are longer. Thoughts restart mid-utterance. Filler words like "um," "uh," "you know," and "like" appear frequently. Punctuation reflects natural pause points in speech that do not always correspond to where written punctuation belongs. The result of raw transcription is text that requires significant cleanup before it reads naturally as written content.

    Speechify's AI layer intercepts the raw transcription and applies edits in real time before delivering text to the active input field. Filler words are removed automatically. Sentences are restructured for written clarity. Punctuation is placed according to written conventions rather than speech rhythm. Grammar is corrected where spoken phrasing differs from standard written form. The user speaks naturally and receives clean, written text ready to use without a separate editing pass. A professional dictating a work email does not want to clean up a transcript before sending. A student capturing notes does not want to restructure raw transcription before studying from it. Speechify's AI editing removes those friction points and makes dictation genuinely competitive with typing, not just faster in raw input speed.

    What the Product Looks Like Across Devices

    The iOS experience centers on the Speechify custom keyboard, which replaces or supplements the standard iOS keyboard. When a user opens any app that involves text input and switches to the Speechify keyboard, they see a clean interface with a prominent microphone button. Tapping the microphone initiates the listening state, indicated by a visible audio waveform and a blue confirmation button. When the user finishes speaking and confirms, the cleaned, formatted text appears in the active input field immediately.

    The Slack use case illustrates the experience clearly. A user opens a Slack channel, switches to the Speechify keyboard, taps the microphone, speaks their message naturally, confirms, and the polished message text appears in the compose field ready to send. The entire process takes the same time as composing a message but requires only speaking, and the output is clean enough to send without review.

    The standalone iOS dictation view shows the progression from a blank field to the listening state with the active waveform, to a finished paragraph of well-structured text after dictation. The output is written-quality prose, demonstrating that the AI layer is producing readable content from natural speech rather than verbatim transcription.

    On Mac, the experience is anchored in the dock-resident microphone button and the fn key shortcut. Users working in Apple Notes see the Speechify microphone in the dock, a tooltip prompting them to hold fn to start dictating, and clean text appearing in the document as they speak. The Mac interface integrates into the desktop environment without disrupting existing workflow or requiring context switching. Speechify Voice Typing works simultaneously across applications visible in the Mac dock including Slack, Outlook, Mail, Notes, Notion, Microsoft Word, Google Docs, Safari, and Chrome, making the scope of compatibility immediately visible.

    The cross-app compatibility image showing Chrome, Slack, Notion, Google Docs, and ChatGPT icons alongside a naturally dictated voice message captures the product's breadth in a single frame. Voice Typing is not a tool for one app or one context. It works wherever the user is writing across their full set of daily applications, on both phone and desktop.

    Why Free and Unlimited Matters

    The decision to make Speechify Voice Typing free and unlimited is significant in a market where leading professional dictation tools have historically been paid products with meaningful cost barriers. Dragon by Nuance carries a per-user license cost that made it primarily accessible to enterprise customers or professionals with specific high-volume needs. Wispr Flow operates on a subscription model after its initial trial. Otter.ai limits free usage in ways that make daily high-volume dictation impractical without a paid plan. Microsoft Dictate and Google Voice Typing are free but do not include AI-powered editing.

    Speechify removes cost as a reason not to use voice dictation. For users with dyslexia, ADHD, or other conditions that make typing more difficult, free unlimited AI-polished dictation on both iOS and Mac removes a barrier that has historically made professional-grade voice input inaccessible. For students who cannot afford paid productivity software, free voice typing changes what is available to them. For professionals who want to experiment with dictation before committing to a workflow change, unlimited free access removes the risk from the trial.

    The unlimited aspect is equally important. Many tools that offer free tiers impose limits on minutes per month, characters per day, or features available without payment. Unlimited free dictation means users never hit walls mid-workflow and do not face interruptions requiring an upgrade to continue working. The tool functions as a reliable, unconstrained part of the daily workflow from the first day of use.

    A Broader Signal for Voice-First Productivity

    The launch of Speechify Voice Typing on iOS and Mac reflects a broader shift in how voice is becoming the primary input interface for a growing segment of computing. The keyboard has defined human-computer interaction for decades but carries two structural limitations voice does not share. It requires physical presence and attention, meaning you cannot type while walking, commuting, or doing anything that occupies your hands and eyes. And it is slower than speaking for most people by a factor of three to five times.

    As speech recognition accuracy and AI-powered editing have improved to the point where voice input produces written-quality output automatically, the friction points that kept dictation as a niche tool for specific professionals are dissolving. Speechify Voice Typing represents what voice-first writing looks like when the technology is reliable enough to use across every app, every day, for every kind of written communication. Learn more and get started at speechify.com.

    Availability

    Speechify Voice Typing is available now on iOS as a custom keyboard downloadable from the App Store and on Mac as a desktop application. The core dictation functionality is free and unlimited. Speechify is available across iOS, Android, web, Mac, Windows, and the Chrome Extension. Learn more about Voice Typing Dictation at speechify.com.

    About Speechify

    Speechify is a leading AI voice and productivity platform serving more than 55 million users worldwide. Its product ecosystem includes Text to Speech, Voice Typing Dictation, AI Podcasts, the Voice AI Assistant, and Speechify Work, a functionality that lets professionals delegate complex knowledge work to a team of AI agents. In 2025, Speechify received the Apple Design Award at WWDC, recognized as a critical resource for accessibility and productivity. Speechify features 1,000 plus natural-sounding voices in over 60 languages and is used in nearly 200 countries. Learn more at speechify.com.

    Original source
  • May 9, 2026
    • Date parsed from source:
      May 9, 2026
    • First seen by Releasebot:
      Jul 14, 2026
    Speechify logo

    Speechify

    API: New simba-3.0 streaming model

    Speechify adds the simba-3.0 streaming model to its API, bringing faster first-token response and richer voice expressivity with speaking-rate and ADV emotion controls. The new model is available for English voices in speech and streaming endpoints, with multilingual support coming soon.

    API: New simba-3.0 streaming model

    simba-3.0 is now available on POST /v1/audio/speech and POST /v1/audio/stream via the model field. It’s the new streaming-native voice model with lower TTFB and richer expressivity, including direct support for per-voice speaking-rate and ADV (Arousal, Dominance, Valence) emotion controls inherited from the voice catalog.

    {
      "input": "Hello, world!",
      "voice_id": "george",
      "model": "simba-3.0"
    }
    

    Currently English only — multilingual coming soon

    simba-3.0 currently supports English voices only. Requests with a non-English voice return 400 with the rejected locale called out in the message. Multilingual support is coming soon; the model name stays simba-3.0 across that change, so no migration is required.

    For non-English voices today, continue to use simba-multilingual.

    Original source
  • May 9, 2026
    • Date parsed from source:
      May 9, 2026
    • First seen by Releasebot:
      May 9, 2026
    Speechify logo

    Speechify

    API: New `simba-3.0` streaming model

    Speechify adds simba-3.0 for audio speech and streaming, bringing a streaming-native voice model with lower TTFB, richer expressivity, per-voice speaking-rate, and ADV emotion controls. It currently supports English voices only, with multilingual support coming soon.

    simba-3.0 is now available on POST /v1/audio/speech and POST /v1/audio/stream via the model field. It's the new streaming-native voice model with lower TTFB and richer expressivity, including direct support for per-voice speaking-rate and ADV (Arousal, Dominance, Valence) emotion controls inherited from the voice catalog.

    {
      "input": "Hello, world!",
      "voice_id": "george",
      "model": "simba-3.0"
    }
    

    Currently English only — multilingual coming soon

    simba-3.0 currently supports English voices only. Requests with a non-English voice return 400 with the rejected locale called out in the message. Multilingual support is coming soon; the model name stays simba-3.0 across that change, so no migration is required.

    For non-English voices today, continue to use simba-multilingual.

    Original source
  • Apr 30, 2026
    • Date parsed from source:
      Apr 30, 2026
    • First seen by Releasebot:
      May 2, 2026
    Speechify logo

    Speechify

    Speechify Announces Early Access to Speechify Work

    Speechify launches Speechify Work, an early access AI-powered agent platform that helps professionals delegate research, analysis, presentations, reports, spreadsheets, and other complex workflows. It expands Speechify beyond voice tools into a new era of delegated productivity.

    Discover Speechify Work, Speechify’s new AI-powered work agent platform for professionals that automates research, analysis, and asset creation.

    Speechify has announced the early access launch of Speechify Work, a new AI-powered platform designed specifically for knowledge workers who want to delegate complex professional tasks to intelligent agents that can research, analyze, create, and execute work on their behalf.

    Speechify Work represents a major strategic expansion for Speechify beyond its leadership in text to speech, voice typing, AI podcasts, and Voice AI productivity tools. With Speechify Work, the company is entering the rapidly emerging market for professional AI agents, giving users the ability to assign complete workflows to their own team of Speechify-powered agents and receive polished deliverables instead of simple conversational responses.

    Rather than functioning like a traditional chat interface, Speechify Work is built around delegated execution. Users define work goals, assign projects, and allow Speechify agents to complete substantial portions of professional knowledge work independently. The platform is designed to serve as a professional digital workforce capable of understanding objectives, gathering information, synthesizing findings, and producing business-ready outputs.

    Speechify Work is built for professionals whose responsibilities increasingly require more than search or writing assistance. It is intended for executives, consultants, operators, researchers, marketers, founders, analysts, and other knowledge workers who need to complete sophisticated projects faster and with greater scale.

    What Can Speechify Work Do?

    Speechify Work enables users to fully delegate tasks such as:

    • Conducting market and competitive research
    • Building PowerPoint presentations and slide decks
    • Creating Excel spreadsheets and analytical workbooks
    • Producing PDF reports, briefs, and strategic memos
    • Performing recurring research and scheduled workflows
    • Monitoring business developments over time
    • Synthesizing large datasets into actionable insights
    • Conducting browser-based research and automation
    • Organizing and analyzing internal documents
    • Creating professional deliverables across multiple formats

    This positions Speechify Work as more than an AI assistant. It is designed to function like a dedicated knowledge worker that can execute meaningful professional tasks while allowing users to focus on validation, refinement, and strategic oversight.

    How Speechify Work Competes in the New AI Agent Category

    Speechify Work enters a growing market alongside products such as Perplexity Computer and Claude Cowork, both of which are helping define the shift from chat-based AI to agentic professional systems.

    Like these competitors, Speechify Work allows users to assign tasks in natural language and have agents browse the web, conduct deep research, automate workflows, create business assets, schedule recurring tasks, and connect across professional tools. From generating weekly reports to building spreadsheets, preparing presentations, or conducting large-scale analysis, Speechify Work is designed to complete professional work that traditionally required significant human time.

    Speechify differentiates itself by combining these delegated work agents with its broader ecosystem of voice productivity, document understanding, and multimodal workflows already used by millions worldwide. Rather than treating work automation as a standalone product, Speechify Work extends Speechify’s broader mission of helping users consume, create, and now fully delegate knowledge work.

    Why Speechify Work Matters for the Future of Professional Productivity

    Speechify believes AI is rapidly evolving from prompt-based interfaces into agentic systems that function as digital workers.

    “Speechify Work represents the next major evolution of productivity,” said Cliff Weitzman, Founder and CEO of Speechify. “For years, Speechify has helped millions read faster, write faster, and think bigger. With Speechify Work, we are expanding that mission by giving professionals the power to delegate meaningful work to AI agents that can research, analyze, create, and execute. This is about moving from AI as an assistant to AI as a true workforce.”

    This shift reflects a larger transformation in how professionals may increasingly operate in the coming years. Instead of manually completing every research task, spreadsheet, presentation, or report, knowledge workers can increasingly define strategic goals while AI systems handle execution. Speechify sees this category as one of the most economically transformative applications of AI, particularly for non-engineering professionals whose workflows have historically been underserved by highly technical automation tools.

    How Speechify Work Fits Into Speechify’s Larger Platform

    Speechify Work builds on Speechify’s broader product ecosystem, which already includes:

    • Text to Speech
    • Voice Typing Dictation
    • AI Podcasts
    • Voice AI Assistant
    • Document understanding
    • Cross-platform productivity tools

    By integrating professional delegation into this ecosystem, Speechify aims to create a unified environment where users can consume information, create content, and fully automate knowledge workflows through one platform.

    This means users can move from listening to research, dictating ideas, generating strategic outputs, and assigning recurring work tasks without leaving the Speechify ecosystem.

    Early Access Launch

    Speechify Work is initially launching through an early access program for select professional users, with broader rollout expected in the coming weeks.

    The product is specifically focused on high-value professional workflows and is designed to serve users seeking meaningful economic leverage through AI-powered delegation.

    As Speechify continues expanding beyond voice-first productivity into larger AI infrastructure categories, Speechify Work represents one of the company’s most significant product launches to date.

    About Speechify

    Speechify is a leading AI productivity platform serving more than 50 million users worldwide through products including Text to Speech, Voice Typing Dictation, AI Podcasts, Voice AI Assistant, and enterprise-grade AI infrastructure. With the launch of Speechify Work, Speechify continues expanding its mission to help users work faster, think bigger, and delegate more through next-generation AI systems.

    Original source
Releasebot

Curated by the Releasebot team

Releasebot is an aggregator of official product update announcements from hundreds of software vendors and thousands of sources.

Our editorial process involves the manual review and audit of release notes procured with the help of automated systems.