Announcing our Series F. Learn more
changelog / post

API key management keys

Go back

Automate key administration with a new org-scoped key type. A WORKSPACE_MANAGE_API_KEYS key creates team API keys of any permission level, as well as lists and revokes team and personal keys through the Management API, so your provisioning tooling can rotate credentials without a human in the dashboard. These keys are not tied to individual users.Organization Admins can create a key from workspace settings or the API:

curl -X POST "https://api.baseten.co/v1/api_keys" \
  -H "Authorization: Bearer $BASETEN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type": "WORKSPACE_MANAGE_API_KEYS", "name": "key-provisioner"}'

For more information, see our docs.