Skip to main content

Overview

Novita AI provides $0.50 in trial credits that are valid for 1 year, giving you extended access to experiment with their collection of open-source models.

Trial Credits

$0.50 in free credits

Duration

Valid for 1 year

Available Models

Novita AI offers access to various open-source models for text generation, image generation, and other AI tasks.
Browse the complete model catalog at novita.ai/models

Getting Started

1. Sign Up

Visit novita.ai and create a free account to receive your $0.50 in credits.

2. Get Your API Key

After registration, navigate to your dashboard to generate an API key.

3. Make API Calls

import requests

url = "https://api.novita.ai/v1/chat/completions"
headers = {
    "Authorization": f"Bearer {YOUR_NOVITA_API_KEY}",
    "Content-Type": "application/json"
}

data = {
    "model": "meta-llama/llama-3.1-70b-instruct",
    "messages": [{
        "role": "user",
        "content": "What is the capital of France?"
    }]
}

response = requests.post(url, headers=headers, json=data)
print(response.json())
const response = await fetch('https://api.novita.ai/v1/chat/completions', {
  method: 'POST',
  headers: {
    'Authorization': `Bearer ${process.env.NOVITA_API_KEY}`,
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    model: 'meta-llama/llama-3.1-70b-instruct',
    messages: [{
      role: 'user',
      content: 'What is the capital of France?'
    }]
  })
});

const result = await response.json();
console.log(result);
curl https://api.novita.ai/v1/chat/completions \
  -H "Authorization: Bearer YOUR_NOVITA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "meta-llama/llama-3.1-70b-instruct",
    "messages": [{
      "role": "user",
      "content": "What is the capital of France?"
    }]
  }'

Extended Trial Period

Your $0.50 credit is valid for 1 year, giving you plenty of time to explore the platform and experiment with different models at your own pace.

Use Cases

  • Long-term Testing: Extended trial period allows thorough evaluation
  • Educational Projects: Perfect for learning and experimenting
  • Prototyping: Build and test applications over an extended timeline
  • Model Exploration: Try different models without time pressure

Resources

Novita AI Platform

Access the platform

Model Catalog

Browse available models
With a full year to use your credits, you can experiment at your own pace and revisit the platform for different projects.

Build docs developers (and LLMs) love