Introduction
Welcome to use canopywave API
This guide will walk you through setting up your account and making your first inference request in just a few minutes, making it easy to get started with our models.
1. Register
First, register an accountregister an account using your email address.
2. Manage API Key
The platform verifies identity using API keys.
Go to the Key Management interface to create and manage your keys.
3. Start your first serverless API call
In this example, we’ll choose DeepSeek V3.1
cURL
curl -X POST https://inference.canopywave.io/v1
-H "Content-Type: application/json"
-H "Authorization: Bearer $CANOPYWAVE_API_KEY"
-d '{
"model": "deepseek/deepseek-chat-v3.1",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "please tell me a story."}
],
}'Python
from openai import OpenAI
BASE_URL = "https://inference.canopywave.io/v1"
API_KEY = os.environ.get("CANOPYWAVE_API_KEY")
client = OpenAI(api_key=API_KEY, base_url=BASE_URL)
response = client.chat.completions.create(
model="deepseek/deepseek-chat-v3.1",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "please tell me a story."}
],
)
print(response.choices[0].message.content)Congratulations – you can choose a model you're interested in and start your AI journey!
Resource
View detailed pricing information
Contact us for technical support
Join our community discussion
Stay tuned for our latest updates