SDKs
Unkey’s API provides programmatic access for all resources within our platform.
npm add @unkey/api
import { Unkey } from "@unkey/api"; const unkey = new Unkey({ rootKey: process.env["UNKEY_ROOT_KEY"], }); async function run() { const result = await unkey.apis.createApi({ name: "payment-service-production", }); console.log(result); } run();
Was this page helpful?