API Keys
Manage your API keys for programmatic access
Security note: API keys provide full access to your account. Never share them publicly or commit them to version control.
production-key
key_prod_001vl_prod_••••••••••••••••clusters:readclusters:writeinference
Created: Dec 1, 2024Last used: 2 minutes ago
staging-key
key_stag_001vl_stag_••••••••••••••••clusters:readclusters:writeinference
Created: Nov 15, 2024Last used: 3 hours ago
development-key
key_dev_001vl_dev_••••••••••••••••clusters:readinference
Created: Oct 20, 2024Last used: Yesterday
Quick Start
Use your API key to authenticate requests to the VectorLay API:
import vectorlay
client = vectorlay.Client(api_key="vl_prod_xxxxx")
# List your clusters
clusters = client.clusters.list()
# Run inference
response = client.inference.run(
cluster="prod-inference",
input={"prompt": "Hello, world!"}
)