Changelog
New

API key management

Manage API keys from the dashboard with expiry, status, rename, disable, and a one-time reveal on creation.

Dashboard API

The dashboard now has a full API keys page. Create, name, and retire keys without leaving the browser.

  • Set an expiry date per key.
  • A status pill shows active, expired, or disabled at a glance.
  • Rename or disable a key in place.
  • The secret is revealed once on creation, with an inline test to confirm it works.

Open app.rendobar.com and head to settings to manage keys.

const key = await client.apiKeys.create({
name: "ci",
expiresIn: 2592000, // seconds, so 30 days
});
// key.key is returned once, on creation, and never again.

expiresIn is in seconds. Omit it and the key does not expire, which is fine for a long-lived integration and worth avoiding for anything running in CI.

Keys authenticate every request in the quickstart. Per-plan request rates are listed under plan limits.

Share