Built to move at production speed.
Every utility ships inside one Next.js app—from preview deployments to your production domain.
A deployment-ready arsenal of tiny, useful endpoints for the jobs that should never slow down a build.
{
"ok": true,
"tools": 20,
"status": "ready"
}The tiny APIs you use every week deserve a permanent home.
Kunai turns common developer chores into a focused, inspectable toolkit. No SDK sprawl, no scattered scripts, no mystery—just useful JSON from one sharp hub.
Search the collection, select an endpoint, then run it against the active deployment without leaving the page.
Every utility ships inside one Next.js app—from preview deployments to your production domain.
Success, errors, request IDs, and timestamps follow the same predictable contract.
Bounded inputs, clear validation, secure randomness, and no external fetches.
Add a Route Handler, register its metadata, and it joins the live catalog instantly.
Drop a Next.js Route Handler into the API directory, return the shared response envelope, and make it available from the live workspace.
Open repositoryimport { ok } from"@/lib/api-response";
export async function GET() {
return ok({
message:"Ready when you are.",
});
}