API Keys
API keys authenticate your requests to the Lystica Cloud API. Keep them secure and never expose them in client-side code.
Getting an API Key
- 1
Sign in to lystica.cloud
- 2
Go to Dashboard → API Keys
- 3
Click Create API Key
- 4
Copy the key immediately (it's only shown once)
- 5
Store it securely (environment variable, secrets manager, etc.)
Key formats
lys_live_...— Productionlys_test_...— Sandbox
Usage
const lystica = new LysticaCloud({
apiKey: process.env.LYSTICA_API_KEY!,
});