Skip to main content

Create an API Key

To use the Voidr API, you need a Service Account with clientId and clientSecret.

Steps

  1. Access app.voidr.co/settings
  2. In the Integrations section, click API Keys → Manage
  3. Click Create Service Account
  4. Fill in the name (e.g., CI/CD Pipeline) and optional description
  5. Copy and save the clientId and clientSecret displayed
The clientSecret will not be shown again. Store it in a secure location.

What You’ll Receive

After creating a service account, you’ll get:
  • clientId: Starts with sa_ (e.g., sa_xxxxxxxxxxxxxxxx)
  • clientSecret: Starts with sk_ (e.g., sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx)

Next Steps

Use these credentials to authenticate via API and obtain a bearer token for making API requests.

Best Practices

  • Store credentials securely in environment variables or a secrets manager
  • Use separate service accounts for different environments (staging, production)
  • Rotate credentials periodically
  • Never commit credentials to version control