Set your structure, start creating mocks in JSON.
Set your structure, start creating mocks in JSON.
Name
Type
Description
Icon
Convert types to JSON mocks for testing your applications.
You can pass your types code and get a mock as you desire with AI.
type User = {
id: number;
name: string;
email: string;
};
[
{
"id": 1,
"name": "Usuario 1",
"email": "usuario1@example.com"
},
{
"id": 2,
"name": "Usuario 2",
"email": "usuario2@example.com"
},
{
"id": 3,
"name": "Usuario 3",
"email": "usuario3@example.com"
}
]
Some examples
You can see more examples. Select one of the following items to see more details.