Edge-native runtime
Cold starts under 15ms. Global execution close to your users, backed by a hardened container per invocation.
Iyctt / i·kit / is the API platform for developer teams shipping webhooks, scheduled jobs, and event pipelines without owning infrastructure. A typed SDK, deterministic retries, and observability built in.
Iyctt — short for “If You Can’T Tell.”
# Deploy a webhook that runs a workflow on every push $ iyctt deploy \ --name deploy-notifier \ --trigger github.push # Invoke it from your app $ curl https://api.iyctt.com/v1/flows/deploy-notifier/run \ -H "Authorization: Bearer $IYCTT_KEY" \ -d '{"repo":"acme/api","commit":"a1b2c3"}' { "run_id": "run_2n8fJq...", "status": "queued", "retries": 0 }
APIs, tools, and automation primitives designed for teams who ship backend features on a small budget of engineering time.
Cold starts under 15ms. Global execution close to your users, backed by a hardened container per invocation.
First-class TypeScript, Go, and Python clients generated from OpenAPI. Never guess an endpoint shape again.
Idempotent replays with content-addressable input, exponential backoff, and dead-letter queues you can inspect.
Structured traces, per-run logs, and per-flow SLO dashboards ship out of the box — no APM to configure.
Scoped API keys, per-flow secret bindings, and audit logs that never leak plaintext outside the vault.
Compose webhooks, cron, queues, KV, and durable state without stitching five vendors together.
Endpoints are versioned, discoverable, and generated from a hand-written OpenAPI spec. Every response is typed, every error is documented, and every retry is deterministic.
any in public typesimport { Iyctt } from "@iyctt/sdk"; const flow = new Iyctt({ token: env("IYCTT_KEY") }); export default flow.workflow("deploy-notifier", { trigger: { source: "github.push" }, retries: { max: 5, backoff: "exponential" }, }, async (event, ctx) => { const commit = await ctx.git.describe(event.commit); await ctx.slack.post({ channel: "#deploys", text: `Shipped ${commit.sha} to ${event.env}`, }); });
Start on the free tier, upgrade when you need higher limits or team features. No per-seat surprises.
For side projects and prototypes.
For growing teams shipping in production.
SSO, audit logs, and dedicated support.