Create an API key

API keys authenticate your requests to the LTX API. You create and manage them in the Developer Console — you'll only see the full key once, so copy it somewhere safe before closing the creation dialog.

How to create an API key

  1. Go to API keys in the Developer Console
  2. Click Create
  3. Enter a name and expiration date
  4. Click Create API Key to generate the key
  5. Copy your key and store it somewhere safe
  6. Click Done
You won't see this key again

The full key is only shown once. If you lose it, you'll need to delete it and create a new one.

Storing your key securely

Your API key gives full access to your account — treat it like a password.

  • Don't paste it directly into your code. If you share or publish that code, your key is exposed.
  • Keep it out of version control (Git). Never commit a file containing your key.
  • If your team uses a secrets manager (like AWS Secrets Manager or Doppler), store it there.

The standard approach is to store it as an environment variable:

export LTXV_API_KEY="your_api_key_here"

Ready to make your first request?

See the quick start guide in the developer docs.

We'd love your feedback. Did this article help?