Generate TypeScript interfaces from JSON — instant, client-side, no signup
interface Root {
user: User;
}
interface User {
id: number;
name: string;
email: string;
active: boolean;
score: number;
tags: string[];
address: Address;
}
interface Address {
city: string;
zip: string;
}