WorldRouter

Models
Metatext

Llama 3.3 70B Instruct

Updated 70B Llama instruct model for general-purpose chat and reasoning.

llama-3.3-70b-instruct

Quickstart

Call this model

Chat completion
curl https://inference-api.worldrouter.ai/v1/chat/completions \
  -H "Authorization: Bearer your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "llama-3.3-70b-instruct",
    "messages": [
      {
        "role": "user",
        "content": "Hello"
      }
    ]
  }'