Skip to main content

Getting Your API Key

  1. Log in to your Verilock Dashboard
  2. Navigate to Settings > API Keys
  3. Click “Create API Key”
  4. Give it a name (e.g., “Production Server”) and copy the generated key
The full API key is only shown once at creation time. Store it securely. If you lose it, you’ll need to create a new key.

Key Properties

PropertyDescription
nameHuman-readable label for identification
keyThe API key string — use this in the X-API-Key header
created_atWhen the key was generated
last_used_atLast time the key was used for an API call

Best Practices

  • Use environment variables to store API keys — never hardcode them
  • Create separate keys for development and production
  • Rotate keys periodically and revoke unused ones
  • Only make API calls from your backend server, never from client-side code