Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/openstatusHQ/openstatus. 馃珫 Status page with uptime monitoring & API monitoring as code 馃珫 openstatus.dev
bun drizzle-orm monitoring monitoring-as-code nextjs observability on-call open-source shadcn-ui status-page statuspage synthetic-monitoring tinybird turso uptime uptime-checker uptime-monitor
Something went wrong. Try again.
268 B 路 8 lines
TypeScript
123456789export const validateEmailNotDisposable = async (mailHost: string) => { const response = await fetch( `https://open.kickbox.com/v1/disposable/${mailHost}`, ); const status = (await response.json()) as Record<string, unknown>;
return status.disposable;};