ApiKeyTokenCard

Domain · API Doc

Card for a single API key — reveal/hide, copy-to-clipboard, env badge, last-used metadata.

Production key with scopes

Preview

Production key

production
••••••••••••••••a1b2
Created
Jan 12, 2026
Last used
May 20, 2026
read:products write:orders
Code
<%- include('modules/domain/api-doc/ApiKeyTokenCard', {
  name: 'Production key',
  token: 'demo_production_token_REDACTED',
  environment: 'production',
  createdAt: '2026-01-12',
  lastUsedAt: '2026-05-20',
  scopes: ['read:products', 'write:orders']
}) %>

Staging key with revoke action

Preview

Staging key

staging
••••••••••••9z8y
Created
Apr 1, 2026
Last used
Never
Code
<%- include('modules/domain/api-doc/ApiKeyTokenCard', {
  name: 'Staging key',
  token: 'demo_staging_token_REDACTED',
  environment: 'staging',
  createdAt: '2026-04-01',
  lastUsedAt: null,
  onRevoke: true
}) %>
Source modules/domain/api-doc/ApiKeyTokenCard.ejs