Getting Started
Installation

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_here

Install SDK

pip install canvelete
import 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

PlanCredits/MonthBest For
Free500Testing
Individual5,000Freelancers
Teams25,000Agencies
EnterpriseUnlimitedProduction

View details at canvelete.com/pricing (opens in a new tab).

Next Steps