Skip to main content

API Keys

API keys let you access the Zevform API programmatically from your own applications.

Creating an API Key

  1. Go to API in the sidebar.
  2. Click Create API key.
  3. Give it a descriptive name (e.g. “Production Backend”).
  4. Copy the key immediately — it won’t be shown again.

Using API Keys

Include your API key in the Authorization header:
curl https://www.zevform.com/api/v1/forms \
  -H "Authorization: Bearer zf_your_api_key"

Managing Keys

  • View — See all active keys with their creation date.
  • Revoke — Delete a key to immediately disable access.

Security Best Practices

  • Never expose API keys in client-side code.
  • Use environment variables to store keys.
  • Rotate keys periodically.
  • Revoke keys you no longer need.