Earn Up to $500 in DeepSeek API Credits — Supercharge Your AI Projects Today!

Earn Up to $500 in DeepSeek API Credits — Supercharge Your AI Projects Today!

·

6 min read

Novita AI is offering an exclusive, limited-time opportunity! With the DeepSeek Referral Program, you can earn up to $500 in DeepSeek API credits by simply referring your friends. Here’s the best part: both you and your referral will receive $20 in credits, unlocking access to top-tier models like DeepSeek R1 and V3.

These credits can power your next big project, whether you’re working with Anything LLM, Langflow, Continue, Helicone, Dify, Cursor, LobeChat, and many more. Don’t miss out on the opportunity to supercharge your AI applications. Sign up for the Novita AI Referral Program and begin earning credits now.

Why DeepSeek R1 and V3?

DeepSeek R1 and V3 are cutting-edge AI models that deliver advanced capabilities in natural language processing and complex problem-solving. Unlike expensive proprietary models, DeepSeek’s open-source design allows for widespread hosting and distribution by various providers, offering greater flexibility and significant cost savings.

While DeepSeek V3 shines as a fast and versatile general-purpose AI assistant, R1 builds on V3’s strengths by integrating reinforcement learning, enabling it to handle more intricate tasks. This makes R1 especially powerful for mathematical problem-solving, coding challenges, and complex step-by-step logical reasoning.

DeepSeek R1 BENCKMARK

Why Novita AI is the Trusted Choice

Artificial Analysis, a top AI model evaluation platform, ranks Novita AI alongside industry leaders like Together AI and Fireworks AI, solidifying its reputation as a reliable choice for developers everywhere. OpenRouter, the world’s leading unified AI model interface, also endorses Novita AI as one of the most cost-effective DeepSeek providers.

OpenRouter DeepSeekV3

4 Easy Steps to Claim $20 in API Credits

Step 1: Visit the DeepSeek Referral Program Page

Head to the official page to begin.

Step 2: Enter Your Invite Code

Use either the official invite code (5W10UA) or your personal one to get started.

Step 3: Create Your Novita AI Account

Sign up using your email, Google, or GitHub account.

Step 4: Verify Your GitHub Account

Complete the verification process to unlock your credits and start using DeepSeek.

3 Ways to Share and Earn Up to $500 in Credits

Earn up to $500 in DeepSeek credits by referring others. Here’s how you can share and earn:

  • Copy Your Referral Link: https://novita.ai/referral?invited_code=xxx

  • Copy your own Referral Code

  • Share on Social Media : Post your referral link on platforms like Twitter (X), LinkedIn, Facebook, or anywhere else developers are hanging out.

The more you share, the more you earn!

Novita AI referral

How to Make the Most of Your DeepSeek API Credits

Once you’ve earned your credits, here’s how you can start using them:

Novita AI DeepSeek Playground

Test out powerful models like DeepSeek models in our easy-to-use playground.

API Integration

Novita AI provides client libraries for Curl, Python, and JavaScript, making it easy to integrate DeepSeek R1 into your projects:

For Python users:

from openai import OpenAI

client = OpenAI(
    base_url="https://api.novita.ai/v3/openai",
    api_key="<YOUR Novita AI API Key>",
)
model = "deepseek/deepseek-r1"
stream = True # or False
max_tokens = 2048
system_content = """Be a helpful assistant"""
temperature = 1
top_p = 1
min_p = 0
top_k = 50
presence_penalty = 0
frequency_penalty = 0
repetition_penalty = 1
response_format = { "type": "text" }
chat_completion_res = client.chat.completions.create(
    model=model,
    messages=[
        {
            "role": "system",
            "content": system_content,
        },
        {
            "role": "user",
            "content": "Hi there!",
        }
    ],
    stream=stream,
    max_tokens=max_tokens,
    temperature=temperature,
    top_p=top_p,
    presence_penalty=presence_penalty,
    frequency_penalty=frequency_penalty,
    response_format=response_format,
    extra_body={
      "top_k": top_k,
      "repetition_penalty": repetition_penalty,
      "min_p": min_p
    }
  )
if stream:
    for chunk in chat_completion_res:
        print(chunk.choices[0].delta.content or "", end="")
else:
    print(chat_completion_res.choices[0].message.content)

For JavaScript users:

import OpenAI from "openai";
const openai = new OpenAI({
  baseURL: "https://api.novita.ai/v3/openai",
  apiKey: "<YOUR Novita AI API Key>",
});
const stream = true; // or false
async function run() {
  const completion = await openai.chat.completions.create({
    messages: [
      {
        role: "system",
        content: "Be a helpful assistant",
      },
      {
        role: "user",
        content: "Hi there!",
      },
    ],
    model: "deepseek/deepseek-r1",
    stream,
    response_format: { type: "text" },
    max_tokens: 2048,
    temperature: 1,
    top_p: 1,
    min_p: 0,
    top_k: 50,
    presence_penalty: 0,
    frequency_penalty: 0,
    repetition_penalty: 1
  });
  if (stream) {
    for await (const chunk of completion) {
      if (chunk.choices[0].finish_reason) {
        console.log(chunk.choices[0].finish_reason);
      } else {
        console.log(chunk.choices[0].delta.content);
      }
    }
  } else {
    console.log(JSON.stringify(completion));
  }
}
run();

For Curl users:

curl "https://api.novita.ai/v3/openai/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer <YOUR Novita AI API Key>" \
  -d @- << 'EOF'
{
    "model": "deepseek/deepseek-r1",
    "messages": [
        {
            "role": "system",
            "content": "Be a helpful assistant"
        },
        {
            "role": "user",
            "content": "Hi there!"
        }
    ],
    "response_format": { "type": "text" },
    "max_tokens": 2048,
    "temperature": 1,
    "top_p": 1,
    "min_p": 0,
    "top_k": 50,
    "presence_penalty": 0,
    "frequency_penalty": 0,
    "repetition_penalty": 1
}
EOF

Explore GitHub Integrations

Novita AI DeepSeek API integrates with many popular GitHub projects, making it simple for developers to get started with tools like:

  • Anything LLM: Full-stack AI desktop app featuring RAG and AI Agent capabilities.

  • Langflow: A framework for managing complex workflows, used by over 10,000 developers.

  • Continue: An AI-powered code assistant that accelerates your development process.

  • Skyvern: A browser automation tool combining LLMs and computer vision.

  • Helicone: A new architecture for recording, tracking, and evaluating LLM responses in production.

  • Dify: A platform for quickly deploying LLM-based apps across multiple services.

  • Cursor: A powerful IDE designed for building and managing LLM-powered applications.

  • LobeChat: Open-source chatbot framework powered by LLMs, ranked among top GitHub projects.

Novita AI DeepSeek API is already supporting a wide variety of open-source projects and integrations, with detailed tutorials available in our upcoming articles.

Frequently Asked Questions

How much can I earn in vouchers?

Each user can earn up to a total of $500 in vouchers through our referral program.

What can the vouchers be used for?

The vouchers are exclusively redeemable for our DeepSeek V3, R1, and other DeepSeek distilled model APIs.

Do the vouchers expire?

Yes. Each new voucher expires 90 days from the date it is issued.

Are there any usage limits with the vouchers?

API calls made using voucher credits may operate under lower rate limits, depending on demand. For higher limits, please contact us at support@novita.ai.

Note: Vouchers are non-transferable and cannot be redeemed for cash. Additional terms may apply, and Novita AI reserves the right to modify or discontinue this offer at any time.

Start Earning and Building with Novita AI Today!

Don’t miss out on the chance to earn up to $500 in credits, unlock powerful DeepSeek models, and supercharge your projects with Novita AI. Whether you’re building AI-powered tools, developing advanced agents, or creating the next big thing in AI, Novita AI is your trusted partner.

Sign up now, share your link, and start building—your next big project is just a click away!

Originally from Novita AI

About Novita AI

Novita AI is an AI cloud platform that offers developers an easy way to deploy AI models using our simple API, while also providing an affordable and reliable GPU cloud for building and scaling.