Documentation
Everything you need to get started with Cloudigo in minutes.
Quick Start Guide
Go from zero to your first API call in 5 minutes.
Create an Account
Sign up at cloudigo.ai and verify your email. You'll receive free tokens automatically.
Create an API Key
Navigate to the API Keys section in your dashboard and generate a new key. Set spending limits if needed.
Make Your First Call
Use the code snippet below to make your first API call. We're compatible with the OpenAI SDK.
Monitor & Scale
Track usage in real-time on your dashboard. Set alerts and scale up as your needs grow.
Code Examples
from openai import OpenAI
client = OpenAI(
base_url="https://api.cloudigo.ai/v1",
api_key="sk-cldg-your-api-key"
)
response = client.chat.completions.create(
model="claude-3.5-sonnet",
messages=[
{"role": "user", "content": "Hello, Claude!"}
]
)
print(response.choices[0].message.content)SDK Downloads
Official SDKs for popular languages.
Python SDK
pip install / npm / go get
Node.js SDK
pip install / npm / go get
Go SDK
pip install / npm / go get
API Reference
Complete API documentation with examples for every endpoint.
Chat Completions
OpenAI-compatible chat completion endpoint. Supports streaming.
List Models
Retrieve all available models with pricing info.
API Key Management
Create, list, and revoke API keys programmatically.
Usage Statistics
Query token usage and cost breakdowns.