Demo Β β’Β Documentation Β β’Β Issues Β β’Β Roadmap Β β’Β npm
- works with CLI, Node.js 18+, or npx
- supports OpenAPI 2.0, 3.0, and 3.1 specifications
- supports JSON and YAML input files
- generates TypeScript interfaces and SDKs
- Fetch API, Axios, Angular, Node.js, and XHR clients available
- plugin ecosystem to reduce third-party boilerplate
Love Hey API? Become our sponsor.
Automatically update your code when the APIs it depends on change. Find out more.
The fastest way to use @hey-api/openapi-ts
is via npx
npx @hey-api/openapi-ts \
-c @hey-api/client-fetch \
-i path/to/openapi.json \
-o src/client \
Congratulations on creating your first client! π You can learn more about the generated files on the Output page.
Before you can make API requests with the client you've just created, you need to install @hey-api/client-fetch
and configure it.
npm install @hey-api/client-fetch && npm install @hey-api/openapi-ts -D
pnpm add @hey-api/client-fetch && pnpm add @hey-api/openapi-ts -D
yarn add @hey-api/client-fetch && yarn add @hey-api/openapi-ts -D
bun add @hey-api/client-fetch && bun add @hey-api/openapi-ts -D
We recommend pinning an exact version so you can safely upgrade when you're ready. This package is in initial development and its API might change before v1.
Most people run @hey-api/openapi-ts
via CLI. To do that, add a script to your package.json
file which will make openapi-ts
executable through script.
"scripts": {
"openapi-ts": "openapi-ts"
}
The above script can be executed by running npm run openapi-ts
or equivalent command in other package managers. Next, we need to create a configuration file and move our options from Quick Start to it.
You can also generate clients programmatically by importing @hey-api/openapi-ts
in a TypeScript file.
import { createClient } from '@hey-api/openapi-ts';
createClient({
client: '@hey-api/client-fetch',
input: 'path/to/openapi.json',
output: 'src/client',
});
@hey-api/openapi-ts
supports loading configuration from any file inside your project root folder supported by jiti loader. Below are the most common file formats.
import { defineConfig } from '@hey-api/openapi-ts';
export default defineConfig({
client: '@hey-api/client-fetch',
input: 'path/to/openapi.json',
output: 'src/client',
});
/** @type {import('@hey-api/openapi-ts').UserConfig} */
module.exports = {
client: '@hey-api/client-fetch',
input: 'path/to/openapi.json',
output: 'src/client',
};
/** @type {import('@hey-api/openapi-ts').UserConfig} */
export default {
client: '@hey-api/client-fetch',
input: 'path/to/openapi.json',
output: 'src/client',
};
Alternatively, you can use openapi-ts.config.js
and configure the export statement depending on your project setup.
Input is the first thing you must define. It can be a path, URL, or a string content resolving to an OpenAPI specification. Hey API supports all valid OpenAPI versions and file formats.
If you use an HTTPS URL with a self-signed certificate in development, you will need to set
NODE_TLS_REJECT_UNAUTHORIZED=0
in your environment.
Output is the next thing to define. It can be either a string pointing to the destination folder or a configuration object containing the destination folder path and optional settings (these are described below).
You should treat the output folder as a dependency. Do not directly modify its contents as your changes might be erased when you run
@hey-api/openapi-ts
again.
Clients are responsible for sending the actual HTTP requests. The client
value is not required, but you must define it if you're generating SDKs (enabled by default).
You can learn more on the Clients page.
If you're NOT using a legacy client, we encourage you to try out the experimental parser. Soon, it will become the default parser, but until it's been tested it's an opt-in feature. To try it out, set the experimentalParser
flag in your configuration to true
.
export default {
client: '@hey-api/client-fetch',
experimentalParser: true,
input: 'path/to/openapi.json',
output: 'src/client',
};
npx @hey-api/openapi-ts \
-c @hey-api/client-fetch \
-e \
-i path/to/openapi.json \
-o src/client
The experimental parser produces a cleaner output while being faster than the legacy parser. It also supports features such as Filters and more are being added.
The legacy parser will be used with the legacy clients regardless of the experimentalParser
flag value. However, it's unlikely to receive any further updates.
Plugins are responsible for generating artifacts from your input. By default, Hey API will generate TypeScript interfaces and SDK from your OpenAPI specification. You can add, remove, or customize any of the plugins. In fact, we highly encourage you to do so!
These plugins help reduce boilerplate associated with third-party dependencies. Hey API natively supports the most popular packages. Please open an issue on GitHub if you'd like us to support your favorite package.
@hey-api/schemas
@hey-api/sdk
@hey-api/transformers
@hey-api/typescript
@tanstack/angular-query-experimental
@tanstack/react-query
@tanstack/solid-query
@tanstack/svelte-query
@tanstack/vue-query
fastify
zod
The following plugins are planned but not in development yet. You can help us prioritize them by voting on GitHub.
- Ajv
- Arktype
- Express
- Faker
- Hono
- Joi
- Koa
- MSW
- Nest
- Nock
- Pinia Colada
- Superstruct
- Supertest
- SWR
- TypeBox
- Valibot
- Yup
- Zustand
Released under the MIT License.