
TypeSpec 1.0-RC: Design Faster Today, Scale Easier Tomorrow
We’re excited to announce the TypeSpec 1.0 Release Candidate, marking a significant milestone for the TypeSpec project. TypeSpec accelerates your initial API development while providing a sustainable approach to evolving your APIs over time. Design faster today by defining your APIs in a concise, human-readable format and generating all the artifacts you need from a single source of truth – OpenAPI specifications, client libraries, and server code scaffolding. Scale easier tomorrow with an API-first approach that keeps everything in sync as your API grows and requirements change.
What is TypeSpec?
TypeSpec is an open source language and tooling for describing API contracts, created by Microsoft and shared with the community. Using TypeSpec, you write your API definition in a concise, human-readable format, and TypeSpec takes care of generating:
- API specifications (OpenAPI, JSON Schema, Protocol Buffers)
- Server-side code skeletons (C#, JavaScript today, with more languages coming soon)
- Client libraries in multiple languages (JavaScript, Python, C#, Java today, with more languages coming soon)
- Documentation
- Custom formats through our emitter framework
This API-first development approach accelerates your initial API development by generating boilerplate code automatically, while also eliminating the need to maintain multiple, separate artifacts that can easily drift out of sync as your API evolves.
We’re building a vibrant ecosystem around TypeSpec with multiple channels for support, collaboration, and knowledge sharing:
- GitHub Issues: For bug reports and feature requests
- GitHub Discussions: For questions, discussions, and community support
- Discord Community: Connect with other TypeSpec users and contributors
- Documentation: Comprehensive guides and examples on typespec.io
We welcome contributions and feedback from the community in any form - whether it’s code, documentation, examples, or simply sharing your experiences using TypeSpec with others.
Who’s using TypeSpec?
TypeSpec is already being used by teams both inside and outside Microsoft to streamline their API development workflows:
“One of the highlights [of using TypeSpec] was our ability to author API specs in a very simple and intuitive language. This meant that even [our PMs] who are not engineers were able to understand these API specifications. They could review them, make comments, and participate in designing those APIs.”
— Microsoft Learn Team
Before the introduction of TypeSpec and our move to an API first approach, an OAS [OpenAPI Specification] was a byproduct of the implementation phase. Manual OAS reviews were happening at the end of the development cycle and changes were contentious because of the code rework implied and the likely impact to the release schedule. TypeSpec provides a way to embed [our] guidelines and rules directly in the design. Reviews are now focused more on the design than on the rules and requires less time.”
— London Stock Exchange Group (read more)
You can explore more real-world TypeSpec usage on our videos page, featuring presentations from both Microsoft teams and external community members showing how they’re using TypeSpec to improve their API development workflows.
What’s in the 1.0 Release Candidate
The 1.0-RC includes a foundation of core components alongside preview features that are still actively being developed based on community feedback.
1.0-RC components
These components have been heavily used and tested internally, and we consider them ready for you to try in your own production environment:
-
Compiler and core libraries
- @typespec/compiler: The TypeSpec language compiler
- @typespec/http: HTTP protocol support
- @typespec/openapi: OpenAPI support
-
IDE support
- typespec-vscode: VS Code extension
-
Stable emitters
- @typespec/openapi3: OpenAPI 3.0 output
- @typespec/json-schema: JSON Schema output
Preview features
We’re also including several components in preview state that are still being developed. We welcome your feedback on these features:
-
Protocol emitters
- @typespec/protobuf: Protocol Buffer definitions
-
Libraries
-
Client/server code generation
TypeSpec in action
Let’s see how TypeSpec works with a simple Todo API example. First, you define your API using TypeSpec’s concise syntax:
import "@typespec/http";using Http;
@route("/todoitems")interface TodoItems { @get getTodoItems(): TodoItem[]; @post createTodoItem(@body body: CreateTodoItem): Http.CreatedResponse & TodoItem;}
model TodoItem { @visibility(Lifecycle.Read) id: string;
content: string; dueDate: utcDateTime; isCompleted: boolean; labels?: string[];}
model CreateTodoItem { content: string; labels?: string[];}
From this single definition, TypeSpec can generate multiple artifacts that keep your API implementation consistent across languages and platforms.
Code generation (Preview)
One of the exciting new features in TypeSpec 1.0-RC is the ability to generate both server-side and client-side code. This feature is currently in preview, and we’re actively seeking feedback to refine it.
Server-side code
With the server-side code generators, TypeSpec can produce controller and model code from your API definition that serves as a foundation for your implementation:
[HttpGet][Route("/todoitems")][ProducesResponseType((int)HttpStatusCode.OK, Type = typeof(TodoItem[]))]public virtual async Task<IActionResult> GetTodoItems(){ var result = await TodoItemsOperationsImpl.GetTodoItemsAsync(); return Ok(result);}
Client libraries
TypeSpec can also generate client libraries in multiple languages, providing a consistent, type-safe interface to your API:
const client = new TodoServiceClient();const todo = await client.createTodoItem({ content: "Buy groceries", dueDate: new Date("2025-03-31"), isCompleted: false,});console.log(todo);
Current limitations
The code generation features are currently in preview and have some limitations to be aware of:
- Support for a limited set of authentication mechanisms
- Complex data transformations may require manual coding
- Not all HTTP features are supported (and some advanced features may remain out of scope)
- Documentation for these features is still being developed
We’re actively improving these features based on common scenarios and community feedback, with a focus on addressing the most important use cases for API developers.
Emitters: From TypeSpec to different formats
TypeSpec’s emitter system allows your API definitions to be transformed into various formats. The 1.0-RC includes stable emitters for OpenAPI 3.0 and JSON Schema, with additional emitters in preview.
The OpenAPI 3.0 emitter is particularly important as it ensures compatibility with existing OpenAPI workflows and toolchains, allowing teams to adopt TypeSpec while maintaining their current API ecosystem. This means you can gradually introduce TypeSpec into your development process without disrupting existing tools and processes that depend on OpenAPI specifications.
For teams with existing OpenAPI definitions, we’ve created an OpenAPI to TypeSpec converter tool to help migrate existing API definitions to TypeSpec.
Custom emitters with the emitter framework
For teams with specialized needs, TypeSpec 1.0-RC includes a new experimental emitter framework that allows you to build custom emitters. This framework provides access to TypeSpec’s compiler APIs and type system, enabling you to transform your TypeSpec definitions into any format your organization needs.
The emitter framework is designed to be extensible and developer-friendly, with clear patterns for accessing the TypeSpec type system, transforming types, and generating output. This opens up possibilities for creating custom emitters for internal specifications, proprietary formats, or integration with existing toolchains.
Getting started
To start using TypeSpec 1.0-RC:
- Install TypeSpec: Follow our installation guide to set up TypeSpec in your environment.
- Create your first TypeSpec definition: Follow our quickstart guide to learn the basics of TypeSpec syntax and features and create a simple API definition.
- Generate artifacts: Use the TypeSpec CLI or IDE extensions to generate server code, client libraries, and API specifications from your TypeSpec definition.
- Join our community: Connect with other TypeSpec users in our Discord community
We need your feedback!
As we prepare for the final 1.0 release, your feedback is essential. We particularly want to hear about your experiences with the preview features, including code generation.
Please share your thoughts, bug reports, and feature requests on our GitHub repo.
Next steps
The TypeSpec 1.0-RC marks a significant milestone in our journey to create a powerful, flexible API design language. Try it out today, and help shape the future of TypeSpec through your feedback and contributions.
Thank you to everyone who has contributed to TypeSpec so far, whether through code, documentation, testing, or feedback. Your contributions are what make this project possible.