惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
S
SegmentFault 最新的问题
V
Visual Studio Blog
J
Java Code Geeks
宝玉的分享
宝玉的分享
美团技术团队
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
有赞技术团队
有赞技术团队
量子位
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
博客园 - 叶小钗
月光博客
月光博客
P
Proofpoint News Feed
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
Stack Overflow Blog
Stack Overflow Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to Convert JSON to TypeScript Types (Without Writing ...
Tahmid · 2026-04-28 · via DEV Community

You just got access to a new API. The response comes back — it's a deeply nested JSON object with 40 fields, some optional, some arrays, some nested objects three levels deep. Your team lead says: "We need this typed properly." So you open a new .ts file and start typing interface...

That's an hour of your life you're not getting back — and the types might still be wrong.

Manual JSON-to-TypeScript conversion is one of those tasks that feels like real work but is basically just copying data shapes from one format to another. Here's a better way.

The Problem With Manual Type Writing

Hand-typing TypeScript interfaces from JSON has three common failure modes:

  1. Missing optional fields — APIs often return null or omit fields in edge cases. If you type from a single example response, you'll likely mark optional fields as required.
  2. Wrong primitive types — A field that looks like a number ("count": 42) might occasionally come back as a string ("count": "42") from a legacy backend. You won't catch this until runtime.
  3. It doesn't scale — When the API response changes, you have to re-read and re-type the whole thing manually.

Real Example: Before and After

Say you get this from an API:

{
  "user": {
    "id": 1024,
    "name": "Alice",
    "email": "alice@example.com",
    "roles": ["admin", "editor"],
    "profile": {
      "bio": "Engineer at Acme",
      "avatar_url": "https://example.com/alice.png",
      "joined_at": "2024-01-15T09:30:00Z"
    },
    "settings": {
      "notifications_enabled": true,
      "theme": "dark"
    }
  }
}

Enter fullscreen mode Exit fullscreen mode

If you wrote this by hand, you'd probably produce something like this:

interface Profile {
  bio: string;
  avatar_url: string;
  joined_at: string;
}

interface Settings {
  notifications_enabled: boolean;
  theme: string;
}

interface User {
  id: number;
  name: string;
  email: string;
  roles: string[];
  profile: Profile;
  settings: Settings;
}

interface ApiResponse {
  user: User;
}

Enter fullscreen mode Exit fullscreen mode

That works — but you typed it from one example. Real-world responses can have bio: null, or avatar_url might be absent entirely. You'd discover those gaps at runtime, not at compile time.

Using the JSON to TypeScript converter, you paste the JSON and get properly structured interfaces in seconds. It handles nested objects, arrays, and can mark fields as optional — which is a much safer default for API responses.

Going Further: Runtime Validation With Zod

TypeScript types are compile-time only. They don't protect you at runtime — and if you're fetching from an external API, that's exactly when things go wrong.

A common pattern is pairing your TypeScript interfaces with a Zod schema so you can validate actual API responses at runtime:

import { z } from "zod";

const ProfileSchema = z.object({
  bio: z.string().nullable(),
  avatar_url: z.string().optional(),
  joined_at: z.string(),
});

const UserSchema = z.object({
  id: z.number(),
  name: z.string(),
  email: z.string(),
  roles: z.array(z.string()),
  profile: ProfileSchema,
  settings: z.object({
    notifications_enabled: z.boolean(),
    theme: z.string(),
  }),
});

// Runtime check — throws if the shape doesn't match
const response = await fetch("/api/user/1024");
const data = UserSchema.parse(await response.json());
// Now `data` is fully typed AND validated

Enter fullscreen mode Exit fullscreen mode

You can generate this Zod schema automatically from any JSON using the JSON to Zod tool. The jsonindenter.com blog also has a deeper post on building Zod schemas from JSON for TypeScript projects that covers validation edge cases worth reading.

One More Step: Validate Before You Convert

If the JSON you're working with is malformed — missing quotes, trailing commas, comments copied from a config file — the converter will fail silently or produce wrong output. Run your JSON through a JSON validator first. It highlights the exact line with the problem so you fix it before conversion.

The full workflow looks like this:

  1. Paste the raw JSON from the API response or config file
  2. Validate it to catch any syntax issues
  3. Convert to TypeScript interfaces (and optionally a Zod schema)
  4. Drop the generated types into your codebase

This is especially useful when onboarding a new third-party API or when a backend teammate sends you a sample payload in Slack and you need types in under 60 seconds.

What Auto-Generation Can't Do (Yet)

Generated types have a ceiling. The tools give you the shape of your data, but they can't infer:

  • Semantic constraints — a status field might only accept "active" | "inactive" but the converter will type it as string
  • Cross-field relationships — if is_verified being true implies verified_at is non-null, you'll need to express that manually with a discriminated union
  • Generic patterns — paginated responses where the same wrapper type repeats across endpoints

For those cases, treat auto-generated types as a starting point, not a final answer. But for the vast majority of everyday API work, generation gets you 80% of the way there in seconds rather than spending 30 minutes typing interfaces that might still contain mistakes.


What's the most tedious JSON-to-types conversion you've done by hand? Did anything break when the API response changed later? Drop it in the comments — I'd genuinely like to know how others handle this.


Free tools used in this post:

  • JSON to TypeScript — paste JSON, get TypeScript interfaces instantly
  • JSON to Zod — generate Zod validation schemas from any JSON structure
  • JSON Validator — catch syntax errors before converting
  • All tools — client-side, no sign-up, nothing leaves your browser