···99 <template #layout-top>
1010 <div class="announcement">
1111 <span>
1212+ Our platform<span class="hide-sm"> for OpenAPI specifications</span>
1313+ is now available
1414+ </span>
1515+ <a href="https://app.heyapi.dev/"> Join Beta </a>
1616+ </div>
1717+ <!-- <div class="announcement">
1818+ <span>
1219 Request a feature<span class="hide-sm"> for your business</span>
1320 </span>
1421 <a
···1825 >
1926 Let's Talk
2027 </a>
2121- </div>
2828+ </div> -->
2229 </template>
2330 </Layout>
2431</template>
+1-1
docs/index.md
···3344hero:
55 name: High-quality tools for interacting with APIs
66- tagline: Codegen for your TypeScript projects. Trusted more than 800k times each month to generate reliable API clients and SDKs.
66+ tagline: Codegen for your TypeScript projects. Trusted more than 900k times each month to generate reliable API clients and SDKs.
77 actions:
88 - link: /openapi-ts/get-started
99 text: Get Started
···1313This package is in initial development. The interface might change before it becomes stable. We encourage you to leave feedback on [GitHub](https://github.com/hey-api/openapi-ts/issues).
1414:::
15151616-[@hey-api/openapi-ts](https://github.com/hey-api/openapi-ts) is an OpenAPI to TypeScript codegen trusted more than 800k times each month to generate reliable API clients and SDKs. The code is [MIT-licensed](/license) and free to use. Discover available features below or view our [roadmap](https://github.com/orgs/hey-api/discussions/1495) to learn what's coming next.
1616+[@hey-api/openapi-ts](https://github.com/hey-api/openapi-ts) is an OpenAPI to TypeScript codegen trusted more than 900k times each month to generate reliable API clients and SDKs. The code is [MIT-licensed](/license) and free to use. Discover available features below or view our [roadmap](https://github.com/orgs/hey-api/discussions/1495) to learn what's coming next.
17171818### Demo
1919···36363737```sh
3838npx @hey-api/openapi-ts \
3939- -i path/to/openapi.json \
3939+ -i https://get.heyapi.dev/hey-api/backend \
4040 -o src/client \
4141 -c @hey-api/client-fetch
4242```
···9191import { createClient } from '@hey-api/openapi-ts';
92929393createClient({
9494- input: 'path/to/openapi.json',
9494+ input: 'https://get.heyapi.dev/hey-api/backend',
9595 output: 'src/client',
9696 plugins: ['@hey-api/client-fetch'],
9797});