You've got a JSON API response and you want TypeScript interfaces for it. Here's how to generate them fast — and where the auto-generators quietly get it wrong.

The fast path

Paste your JSON, get interfaces:

{ "id": 1, "name": "Ada", "roles": ["admin"], "profile": { "active": true } }

Enter fullscreen mode