AMD Enters the Free AI Fray: Radeon Cloud Token Factory Unlocks 5 Flagship Model APIs with Native Dual Protocols for Cursor & Cline

AMD Radeon Cloud Token Factory Free Model APIs Cover

AMD Enters the Free AI Fray: Radeon Cloud Token Factory Unlocks 5 Flagship Model APIs with Native Dual Protocols for Cursor & Cline

Following NVIDIA's footsteps with NIM, global computing giant AMD has officially entered the frontier developer AI race! AMD China Developer Platform has launched Radeon Cloud Token Factory, opening up free access to 5 flagship AI model APIs for developers worldwide. The lineup features DeepSeek-V4-Flash (284B MoE with 1M context), DeepSeek-V4-Flash-Vision-Exp (multimodal vision), Alibaba's Qwen 3.8 Flash Next, and OpenBMB's MiniCPM-V 4.6.

Most impressively, AMD provides native dual-protocol compatibility: a single API key and endpoint works seamlessly with both the OpenAI Chat Completions standard and Anthropic Messages format, allowing direct drop-in integration with Cursor, Cline, Roo Code, and AI Agent workflows without third-party proxy gateways!


💡 Key Highlights

  • 🎁 Core Benefit: AMD Radeon Cloud official Public Free Model APIs with zero billing and zero token recharge required.
  • 🤖 Launch Lineup: 5 powerful flagship models:
    • DeepSeek-V4-Flash (284B MoE ultra-fast coding & reasoning, 1,048,576 tokens native context)
    • DeepSeek-V4-Flash-Vision-Exp (1M context experimental vision multimodal flagship)
    • Qwen 3.8 Flash Next (256K context, optimized for complex Chain-of-Thought reasoning)
    • MiniCPM-V 4.6 (256K context, edge multimodal flagship with high-precision OCR)
    • MiniCPM 5 1B (128K context, ultra-low latency on-device language model)
  • Dual Protocol Compatibility: Native OpenAI & Anthropic protocol support. Connect directly to Claude-only and OpenAI-only developer tools alike.
  • 💳 Zero Friction: No credit card required, no overseas phone verification needed.
  • 🔗 Console Access: AMD Radeon Cloud Token Factory

🚀 1. Why AMD is Providing Free Compute: Token Factory Infrastructure

AMD's Instinct and Radeon GPU clusters have made massive strides in ROCm 7.x software ecosystem optimization, vLLM acceleration, and sglang routing.

Token Factory on Radeon Cloud serves as AMD's flagship showcase for high-throughput GPU cloud inference:

  1. Dynamic sglang-router & vLLM High-Throughput Engines: Sub-second time-to-first-token (TTFT) optimized specifically for DeepSeek V4 Flash and Qwen 3.8.
  2. Full 1M Context Window: DeepSeek-V4-Flash provides a massive 1,048,576 tokens context window without truncation.
  3. Transparent Free Model Policy: Officially labeled as "Free to use. Points show relative usage—not a charge."

🛠️ 2. Quickstart Guide: From Key Generation to IDE Integration

Step 1: Sign in to AMD Developer Platform

Visit: https://developer.amd.com.cn/radeon/tokenfactory and log in with phone or email.

Step 2: Retrieve Your API Key

In the Token Factory catalog, click on any free model card (e.g. DeepSeek-V4-Flash). In the popup modal, copy your personal API key (sk-...).

Step 3: Configure Your AI Coding Assistants

Parameters

  • Base URL: https://developer.amd.com.cn/radeon/api/v1
  • API Key: Your copied key
  • Model ID: DeepSeek-V4-Flash or Qwen3.8-Flash-Next

Cursor Configuration

  1. Open Cursor Settings -> Models;
  2. Add DeepSeek-V4-Flash;
  3. Under OpenAI API Key settings, enable Override OpenAI Base URL;
  4. Set URL to https://developer.amd.com.cn/radeon/api/v1 and paste your key.

Cline / Roo Code / Windsurf

Choose OpenAI Compatible:

  • Base URL: https://developer.amd.com.cn/radeon/api/v1
  • Model ID: DeepSeek-V4-Flash

⚡ 3. Native Anthropic Protocol Support

AMD natively supports Anthropic messages API:

bash
# Anthropic Protocol Request
curl https://developer.amd.com.cn/radeon/api/v1/messages \
  -H "x-api-key: $AMD_API_KEY" \
  -H "anthropic-version: 2023-06-01" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "DeepSeek-V4-Flash",
    "max_tokens": 1024,
    "messages": [{"role": "user", "content": "Hello Anthropic format!"}]
  }'
python
# Python OpenAI SDK Quickstart
from openai import OpenAI

client = OpenAI(
    base_url="https://developer.amd.com.cn/radeon/api/v1",
    api_key="YOUR_AMD_API_KEY",
)

response = client.chat.completions.create(
    model="DeepSeek-V4-Flash",
    messages=[{"role": "user", "content": "Hello from AMD Token Factory!"}],
)
print(response.choices[0].message.content)

📬 Follow Free AI API Radar

Free AI API continuously tracks free endpoints, limited-time promotions, and compute discounts worldwide. Subscribe to our free Newsletter to never miss a frontier model drop!

Community Feedback

Comments are tied to your GitHub account — sign in to join the discussion.