Hey API – OpenAPI to TypeScript in Seconds
Hey API offers a tool for quickly converting OpenAPI specifications to TypeScript. The service is free and open source, providing production-grade API infrastructure along with various plugins. It has gained significant traction, with 2.8 million downloads in the last week alone.
- ▪Hey API allows for rapid conversion of OpenAPI to TypeScript.
- ▪The tool is free and open source, featuring production-grade API infrastructure.
- ▪It has achieved 2.8 million downloads in the last week.
Opening excerpt (first ~120 words) tap to expand
(function(){const defaultInput = "openapi"; const defaultOutput = "typescript"; const inputAttr = "codegenInput"; const inputKey = "hey-api__toggle:codegen-input"; const outputAttr = "codegenOutput"; const outputKey = "hey-api__toggle:codegen-output"; const pattern = "\\/codegen\\/(asyncapi|openapi)\\/(typescript|python)"; (function () { var match = window.location.pathname.match(new RegExp(pattern)); var input = match ? match[1] : null; var output = match ? match[2] : null; if (!input) { try { input = localStorage.getItem(inputKey); } catch (_) {} } if (!output) { try { output = localStorage.getItem(outputKey); } catch (_) {} } document.documentElement.dataset[inputAttr] = input || defaultInput; document.documentElement.dataset[outputAttr] = output || defaultOutput; })(); })(); soon…
Excerpt limited to ~120 words for fair-use compliance. The full article is at Hey API.