Skip to main content

Overview

SambaNova Cloud provides $5 in trial credits valid for 3 months, giving you access to a comprehensive selection of cutting-edge language models including DeepSeek V3, Llama 4, and Qwen 3.

Trial Credits

$5 in free credits

Duration

Valid for 3 months

Available Models

SambaNova Cloud offers an impressive selection of state-of-the-art models:

Language Models

ModelDescription
deepseek-ai/DeepSeek-R1-0528DeepSeek reasoning model
deepseek-ai/DeepSeek-R1-Distill-Llama-70BDistilled reasoning model
deepseek-ai/DeepSeek-V3-0324DeepSeek V3 checkpoint
deepseek-ai/DeepSeek-V3.1Latest DeepSeek version
deepseek-ai/DeepSeek-V3.1-TerminusTerminus variant
deepseek-ai/DeepSeek-V3.2Newest DeepSeek release
Llama 3.1 8BEfficient Llama model
Llama 3.3 70BLarge Llama model
Llama-4-Maverick-17B-128E-InstructLatest Llama 4 variant
Qwen/Qwen3-235BLarge Qwen model
Qwen/Qwen3-32BMid-size Qwen model
openai/gpt-oss-120bOpen-source GPT model
E5-Mistral-7B-InstructEmbedding model

Audio Models

  • Whisper-Large-v3: State-of-the-art speech recognition
SambaNova Cloud is optimized for fast inference using specialized hardware, delivering excellent performance across all models.

Getting Started

1. Sign Up

Visit cloud.sambanova.ai and create a free account to receive your $5 credit.

2. Get Your API Key

Navigate to your dashboard to generate an API key.

3. Make API Calls

import openai

client = openai.OpenAI(
    api_key="YOUR_SAMBANOVA_API_KEY",
    base_url="https://api.sambanova.ai/v1"
)

response = client.chat.completions.create(
    model="deepseek-ai/DeepSeek-V3.2",
    messages=[{
        "role": "user",
        "content": "What is the capital of France?"
    }]
)

print(response.choices[0].message.content)
import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: process.env.SAMBANOVA_API_KEY,
  baseURL: 'https://api.sambanova.ai/v1'
});

const response = await client.chat.completions.create({
  model: 'deepseek-ai/DeepSeek-V3.2',
  messages: [{
    role: 'user',
    content: 'What is the capital of France?'
  }]
});

console.log(response.choices[0].message.content);
curl https://api.sambanova.ai/v1/chat/completions \
  -H "Authorization: Bearer YOUR_SAMBANOVA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-ai/DeepSeek-V3.2",
    "messages": [{
      "role": "user",
      "content": "What is the capital of France?"
    }]
  }'

Model Highlights

DeepSeek V3.2

Cutting-edge reasoning and coding capabilities

Llama 4 Maverick

Latest generation Llama model

Qwen 3 235B

Massive multilingual model

Whisper Large v3

Best-in-class speech recognition

Performance Benefits

SambaNova Cloud runs on specialized AI hardware designed for fast inference, providing significantly faster response times compared to general-purpose GPUs.

Speed Advantages

  • Low latency: Optimized hardware for fast responses
  • High throughput: Process multiple requests efficiently
  • Consistent performance: Reliable speed across all models

Use Cases

  • Advanced Reasoning: DeepSeek models for complex problem-solving
  • Code Generation: Latest models with strong coding capabilities
  • Multilingual Applications: Qwen models for global reach
  • Speech Recognition: Whisper for audio transcription
  • Production Apps: Fast, reliable inference for real-time applications

API Compatibility

SambaNova Cloud uses an OpenAI-compatible API, making integration seamless with existing tools and codebases.

Resources

SambaNova Cloud

Access the platform

Documentation

View API documentation
Your $5 credit expires after 3 months. Plan your usage to maximize value during the trial period.

Build docs developers (and LLMs) love