Installation
Set up your Canvelete (opens in a new tab) account and development environment.
Account Setup
1
Create Account
Sign up at canvelete.com (opens in a new tab) with email, Google, or GitHub.
2
Get API Key
Go to Settings → API Keys (opens in a new tab) and generate a new key.
3
Store Securely
Save your key as an environment variable — it won't be shown again.
# Add to .env (and .gitignore)
CANVELETE_API_KEY=cvt_your_api_key_hereSecurity
Never commit API keys to version control. Use environment variables in production.
Install SDK
pip install canveleteimport os
from canvelete import CanveleteClient
client = CanveleteClient(api_key=os.getenv("CANVELETE_API_KEY"))
designs = client.designs.list()Verify Setup
curl -X GET "https://api.canvelete.com/v1/designs" \
-H "Authorization: Bearer $CANVELETE_API_KEY"A successful response confirms your setup is working.
Plans
| Plan | Credits/Month | Best For |
|---|---|---|
| Free | 500 | Testing |
| Individual | 5,000 | Freelancers |
| Teams | 25,000 | Agencies |
| Enterprise | Unlimited | Production |
View details at canvelete.com/pricing (opens in a new tab).