Official Zod schemas for the Rewrite API — versioned, typed, and built for production.
@rewritetoday/zod gives you first-class runtime validation for the public Rewrite API, including REST payloads, reusable resources, and webhook events.
Built for TypeScript, Node.js, Bun, and modern server runtimes, it keeps your integrations aligned with the Rewrite platform while delivering a clean developer experience from request validation to webhook handling.
You can use your favorite package manager to install our package
npm install @rewritetoday/zod zod
# Or
yarn add @rewritetoday/zod zod
# Or
bun add @rewritetoday/zod zodImport schemas from the API version you want to target and validate requests or responses with confidence.
import {
RESTPostCreateTemplateBody,
RESTGetListTemplatesData,
} from '@rewritetoday/zod/v1';
const data = RESTPostCreateTemplateBody.parse({
name: 'order_shipped',
content: 'Hi {{first_name}}, your order {{order_id}} is on the way.',
description: 'Default shipping notification',
variables: [
{ name: 'first_name', fallback: 'customer' },
{ name: 'order_id', fallback: '0000' },
],
i18n: {
br: 'Oi {{first_name}}, seu pedido {{order_id}} esta a caminho.',
},
});
console.log({
data,
url: '/templates',
response: RESTGetListTemplatesData.parse({
ok: true,
data: [],
cursor: {
persist: false,
},
}),
});Use reusable API* resources and endpoint-focused REST<Method>* schemas side by side.
import {
APIWebhook,
RESTPostCreateWebhookBody,
RESTGetListWebhooksData,
} from '@rewritetoday/zod/v1';
const webhook = APIWebhook.parse({
id: '748395130237498700',
name: 'Message lifecycle',
secret: 'rewrite_webhook_secret',
endpoint: 'https://example.com/webhooks/rewrite',
events: ['message.queued', 'message.delivered'],
status: 'ACTIVE',
projectId: '748395130237498701',
createdAt: '2026-02-19T16:05:00.000Z',
});
const body = RESTPostCreateWebhookBody.parse({
name: 'Message lifecycle',
endpoint: 'https://example.com/webhooks/rewrite',
events: ['message.queued', 'message.delivered'],
secret: 'rewrite_webhook_secret',
});
const data = RESTGetListWebhooksData.parse({
ok: true,
data: [webhook],
cursor: {
persist: false,
},
});
console.log({ body, data });Validate Rewrite webhook payloads with a discriminated union and branch safely by event type.
import { WebhookEvent } from '@rewritetoday/zod/v1';
const result = WebhookEvent.safeParse({
type: 'message.sent',
id: '748395130237498799',
createdAt: '2026-02-19T16:05:00.000Z',
data: {
id: '748395130237498800',
projectId: '748395130237498701',
createdAt: '748395130237498801',
analysis: {
characters: 24,
encoding: 'gsm7',
segments: {
count: 1,
single: 160,
concat: 153,
reason: 'fits',
},
},
to: '+5511999999999',
type: 'SMS',
tags: [{ name: 'campaign', value: 'spring' }],
status: 'SENT',
country: 'br',
content: 'Your code is 123456',
encoding: 'GMS7',
templateId: null,
deliveredAt: null,
scheduledAt: null,
isPayAsYouGo: false,
},
});
if (!result.success) {
console.error({ error: result.error });
return;
}
console.log({ data: result.data });You can view our documentation going here. Thanks for building with Rewrite!