Chowbea-axios

OpenAPI to typed Axios

Generate fully-typed API clients from your OpenAPI spec. Autocomplete everywhere. Result-based errors. Zero runtime overhead.

Watch modeOne command
Get Started
api.ts
// Full autocomplete + type inference
const { data, error } = await api.get(
"/users/{id}",
{ id: "123" }
);
if (error) return;
// data is fully typed ✨
console.log(data.name);