Now in alpha version
Deploy mock APIs in seconds.
Zero dashboard configurations. Stream existing TypeScript types, models, or Zod validators directly from your local terminal environment into automated global edge mock nodes instantly.
Code Definition File
import { z } from 'zod';
export const ProductSchema = z.object({
id: z.string().uuid(),
title: z.string(),
price: z.number().positive(),
status: z.enum(['active', 'archived']),
updatedAt: z.date()
});export interface Product {
id: string; // @mock uuid
title: string;
price: number;
status: 'active' | 'archived';
updatedAt: Date;
}{
"id": "uuid",
"title": "string",
"price": "float",
"status": "enum:active,archived",
"updatedAt": "datetime"
}Generated Response Stream200 OK
https://api.mokdt.com/v1/live/prd_4k1sLive CDN
[
{
"id": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"title": "Ergonomic Wireless Keyboard",
"price": 89.99,
"status": "active",
"updatedAt": "2026-06-23T14:48:00Z"
}
]Zero Configuration Pipeline
Monitor code paths locally. The binary parsing tool extracts definitions natively and streams back secure live route nodes instantly.
zsh — pipeline execution process
~/projects/app❯
npm install -g mokdt
+ mokdt@1.4.20 updated inside global module registry.
~/projects/app❯
mokdt deploy ./src/models/user.ts --count 3
⠋ Running automated AST extraction on user.ts targets...
ℹ Found native evaluation schemas: [UserSchema]
✔ Synchronized → Target deployed to global edge runtime
Live URL: https://api.mokdt.com/v1/live/usr_schema_921
"We got incredibly frustrated writing manual mock API controllers or maintaining standalone schema files that drifted every time code parameters changed. mokdt uses the definitions you've already typed out to deliver running state endpoints instantly."
— Built by developers, for developers.
Predictable cloud limits
Straightforward quotas built to support side project deployments seamlessly.
Sandbox System
$0 / forever
- ✓ 5,000 requests / mo
- ✓ Full CLI extraction features
- ✕ Custom token authentication
Coming Soon
Hacker Volume
-- / month
- ✓ Unlimited active synchronized models
- ✓ 500,000 dynamic requests / mo
- ✓ Relational payload matching
- ✓ Custom header verification keys