ModelScope

ModelScope

active

Alibaba's ModelScope (魔搭) community offers free OpenAI-compatible inference — 2,000 calls/day across most models, China-available.

https://api-inference.modelscope.cn/v1

Avg Latency

90-day Uptime

%

Rate Limits

— RPM / 2,000 RPD

Sign-up Required

Yes

Info

Base URL https://api-inference.modelscope.cn/v1
Sign-up Required Yes
Credit Card Not required
Context Window 262K
Last Verified 2026-05-20
china-availableopenai-compatibledeepseekvisionthinkingfunction-call

Models (11)

deepseek-ai/DeepSeek-V3.1

CTX: 164K

active

deepseek-ai/DeepSeek-R1-0528

CTX: 164K

active

Qwen/Qwen3-235B-A22B-Instruct-2507

CTX: 262K

active

Qwen/Qwen3-235B-A22B-Thinking-2507

CTX: 262K

active

Qwen/Qwen3-30B-A3B-Instruct-2507

CTX: 262K

active

Qwen/Qwen3-Coder-480B-A35B-Instruct

CTX: 262K

active

Qwen/Qwen3-Coder-30B-A3B-Instruct

CTX: 262K

active

Qwen/Qwen3-VL-235B-A22B-Instruct

CTX: 262K

active

ZhipuAI/GLM-4.6

CTX: 200K

active

ZhipuAI/GLM-4.5

CTX: 128K

active

moonshotai/Kimi-K2-Instruct

CTX: 128K

active

Quick Start

bash
export API_KEY="your_api_key_here"
curl https://api-inference.modelscope.cn/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $API_KEY" \
  -d '{
    "model": "Qwen/Qwen3-30B-A3B-Instruct-2507",
    "messages": [
      {"role": "user", "content": "Hello! How are you?"}
    ]
  }'