Now offering crypto payments →

Model APIs · Chat / LLM

Llama 3.3 70B Instruct API

Run Llama 3.3 70B Instruct by Meta through one OpenAI-compatible endpoint. Pay per use against your GPU.ai balance — no instance to rent, no deployment to manage.

Available now
Pricing

Llama 3.3 70B Instruct API pricing

Live catalog rates, billed per use against your GPU.ai balance. No subscriptions, no minimums.

TierRate
Serverless
Input tokens: $1.04 / 1MOutput tokens: $1.04 / 1M

Rates are read hourly from the live model catalog and metered per request.

Quick start

Call Llama 3.3 70B Instruct in one request

Any OpenAI SDK works — set the base URL to https://api.gpu.ai/v1 and use your GPU.ai API key.

curl
curl https://api.gpu.ai/v1/chat/completions \
  -H "Authorization: Bearer $GPUAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpuai/llama-3.3-70b-instruct",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'
Python (OpenAI SDK)
from openai import OpenAI

client = OpenAI(
    base_url="https://api.gpu.ai/v1",
    api_key="YOUR_GPUAI_API_KEY",
)

response = client.chat.completions.create(
    model="gpuai/llama-3.3-70b-instruct",
    messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)
JavaScript (OpenAI SDK)
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.gpu.ai/v1",
  apiKey: process.env.GPUAI_API_KEY,
});

const response = await client.chat.completions.create({
  model: "gpuai/llama-3.3-70b-instruct",
  messages: [{ role: "user", content: "Hello!" }],
});
console.log(response.choices[0].message.content);
Details

Llama 3.3 70B Instruct on GPU.ai

Model idgpuai/llama-3.3-70b-instruct
ModalityChat / LLM
AuthorMeta
Context window32,768 tokens
StreamingSupported
Aliases
FAQ

Llama 3.3 70B Instruct API questions

How much does the Llama 3.3 70B Instruct API cost?

Llama 3.3 70B Instruct on GPU.ai currently costs $1.04 / 1M (input tokens), $1.04 / 1M (output tokens). There are no subscriptions or minimums — usage is billed against your GPU.ai balance as you go.

Is the Llama 3.3 70B Instruct API OpenAI-compatible?

Yes. Point any OpenAI SDK at https://api.gpu.ai/v1 with a GPU.ai API key and request model "gpuai/llama-3.3-70b-instruct" — no proprietary client needed.

What is the context window of Llama 3.3 70B Instruct?

Llama 3.3 70B Instruct supports a 32,768-token context window on GPU.ai.

How does billing work?

Chat models bill per input and output token at the listed per-million-token rates, metered per request against your GPU.ai balance.