
Everything you need to build with AI
Comprehensive guides, API references, and tutorials to help you integrate Winter Arc AI into your applications. From quick starts to advanced implementations.
Get started in 5 minutes
Follow these simple steps to integrate Winter Arc AI into your application.
Create an Account
Sign up for free and get instant access to the API
Get Your API Key
Generate a secure API key from your dashboard
Install the SDK
Add the Winter Arc SDK to your project
Make Your First Call
Start generating AI responses in your app
Browse by category
Find exactly what you need with our organized documentation structure.
Getting Started
Quick start guides and essential tutorials to get you building in minutes
API Reference
Complete API documentation with examples in Python, Node.js, and more
AI Models
Deep dive into our AI models, capabilities, parameters, and best practices
SDKs & Libraries
Official SDKs for Python, Node.js, Go, Ruby, and community libraries
Code examples
Copy-paste ready examples in your favorite programming language. Get started in seconds.
from winter_arc import WinterArc
# Initialize the client
client = WinterArc(api_key="your-api-key")
# Create a chat completion
response = client.chat.completions.create(
model="arctic-v2",
messages=[
{
"role": "system",
"content": "You are a helpful AI assistant."
},
{
"role": "user",
"content": "Explain quantum computing in simple terms."
}
],
temperature=0.7,
max_tokens=500
)
# Print the response
print(response.choices[0].message.content)
# Stream responses for real-time output
stream = client.chat.completions.create(
model="arctic-v2",
messages=[{"role": "user", "content": "Write a poem about AI"}],
stream=True
)
for chunk in stream:
if chunk.choices[0].delta.content:
print(chunk.choices[0].delta.content, end="")Interactive Playground
Test API calls in your browser
Copy & Paste Ready
All examples work out of the box
Live Execution
Run code directly in docs
API reference
Complete reference for all API endpoints with request/response schemas, parameters, and examples.
Chat
Completions
Embeddings
Official SDKs
First-class SDKs for all major programming languages. Open source and community maintained.
Python
v2.4.0Official Python SDK with async support and type hints
Node.js
v3.1.0TypeScript-first SDK with streaming and edge runtime support
Go
v1.2.0Idiomatic Go client with context support and retries
Ruby
v1.0.0Ruby gem with Rails integration and ActiveJob support
Java
v2.0.0Java SDK with Spring Boot starters and reactive support
Tutorials & guides
Step-by-step tutorials for common use cases, integrations, and best practices.
Use Cases
Integrations
Can't find what you're looking for?
Our community and support team are here to help you succeed with Winter Arc AI.
Frequently asked questions
Everything you need to know about Winter Arc AI and how it works.
Sign up for a free account, generate an API key from your dashboard, install our SDK in your preferred language, and make your first API call. The entire process takes less than 5 minutes.
We offer Arctic V2 (our flagship model), Arctic V1 (legacy), Arctic Vision for image understanding, Arctic Embed for embeddings, and specialized models for code, math, and creative writing.
Pricing is based on tokens processed. Input and output tokens are priced separately. We offer a generous free tier with 1,000 API calls per month, and volume discounts for enterprise customers.
No. We do not use your API data to train our models. Your data is processed, returned, and deleted. Enterprise customers can enable data residency and additional compliance features.
Free tier: 10 requests/minute. Pro: 100 requests/minute. Enterprise: Custom limits. All plans include burst capacity for traffic spikes.
Yes. Pro plans include 99.9% uptime SLA. Enterprise plans include custom SLAs up to 99.99% with dedicated support and priority incident response.
Yes. Fine-tuning is available on Pro and Enterprise plans. You can fine-tune Arctic V2 with your own data to improve performance for your specific use case.
We have official SDKs for Python, Node.js, Go, Ruby, Java, and Rust. Our REST API works with any language that can make HTTP requests.