Access Free DeepSeek R1 0528 API Now

NovitaAINovitaAI
3 min read

We’re excited to announce that DeepSeek AI’s latest model, DeepSeek R1 0528, released today, is officially available in the Novita AI Model Library. We are also the official inference partner for DeepSeek R1 0528 on Hugging Face, supporting the community in bringing advanced models to production.

For a limited time, new users can claim $10 in free credits to explore and build with DeepSeek-R1 0528’s advanced reasoning capabilities.

Here’s the current DeepSeek-R1 0528 pricing on Novita AI:

DeepSeek-R1–0528: $0.7 / M input tokens, $2.5 / M output tokens

How to Access DeepSeek R1 0528 on Novita AI

Getting started with DeepSeek R1 0528 is fast, simple, and risk-free on Novita AI. Thanks to the Referral Program, you’ll receive $10 in free credits — enough to fully explore DeepSeek R1 0528’s power, build prototypes, and even launch your first use case without any upfront cost.

Use the Playground (No Coding Required)

  • Instant Access: Sign up, claim your free credits, and start experimenting with DeepSeek R1 0528 and other top models in seconds.

  • Interactive UI: Test prompts, chain-of-thought reasoning, and visualize results in real time.

  • Model Comparison: Effortlessly switch between Qwen 3, Llama 4, DeepSeek, and more to find the perfect fit for your needs.

Explore DeepSeek R1 0528 Demo Now

Integrate via API (For Developers)

Seamlessly connect DeepSeek R1 0528 to your applications, workflows, or chatbots with Novita AI’s unified REST API — no need to manage model weights or infrastructure. Novita AI offers multi-language SDKs (Python, Node.js, cURL, and more) and advanced parameter controls for power users.

Option 1: Direct API Integration (Python Example)

To get started, simply use the code snippet below:

from openai import OpenAI

client = OpenAI(
    base_url="https://api.novita.ai/v3/openai",
    api_key="session_Ntg-O34ZOS-q5bNnkb3IcixmWnmxEQBxwKWMW3es3CD7KG4PEhFE1yRTRMGS3s8zZ52hrMdz14MmI4oalaDJTw==",
)
model = "deepseek/deepseek-r1-0528"
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)

Key Features:

  • Unified endpoint:/v3/openai supports OpenAI’s Chat Completions API format.

  • Flexible controls: Adjust temperature, top-p, penalties, and more for tailored results.

  • Streaming & batching: Choose your preferred response mode.

Option 2: Multi-Agent Workflows with OpenAI Agents SDK

Build advanced multi-agent systems by integrating Novita AI with the OpenAI Agents SDK:

  • Plug-and-play: Use Novita AI’s LLMs in any OpenAI Agents workflow.

  • Supports handoffs, routing, and tool use: Design agents that can delegate, triage, or run functions, all powered by Novita AI’s models.

  • Python integration: Simply point the SDK to Novita’s endpoint (https://api.novita.ai/v3/openai) and use your API key.

Connect DeepSeek R1 0528 API on Third-Party Platforms

  • Hugging Face: Use DeepSeek R1 0528 in Spaces, pipelines, or with the Transformers library via Novita AI endpoints.

  • Agent & Orchestration Frameworks: Easily connect Novita AI with partner platforms like Continue, AnythingLLM, LangChain, Dify and Langflow through official connectors and step-by-step integration guides.

  • OpenAI-Compatible API: Enjoy hassle-free migration and integration with tools such as Cline and Cursor, designed for the OpenAI API standard.

Showcase

Prompt: Write a Python program that shows a ball bouncing inside a spinning hexagon. The ball should be affected by gravity and friction, and it must bounce off the rotating walls realistically

Prompt: Build a pilot game

Prompt: Build a PDF summary web app + UI concept

Novita AI is the All-in-one cloud platform that empowers your AI ambitions. Integrated APIs, serverless, GPU Instance — the cost-effective tools you need. Eliminate infrastructure, start free, and make your AI vision a reality.

0
Subscribe to my newsletter

Read articles from NovitaAI directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

NovitaAI
NovitaAI