Skip to content

As we all know, direct use of API services from OpenAI/Gemini/Claude is not possible in China. To use them, you either need a VPN and a foreign credit card, or you need to use a third-party API forwarding service. Third-party API forwarding services are generally cheaper, but their quality and stability may be unreliable, and they may disappear at any time.

Previously, I also recommended some domestic API service providers, such as:

Alibaba Bailian https://bailian.console.aliyun.com

Silicon Flow https://cloud.siliconflow.cn

ByteDance Volcano Engine Ark https://console.volcengine.com/ark

OpenRouter https://openrouter.ai

Currently, the most complete AI large model marketplace in China that can be directly connected without a VPN seems to be 302.AI. It gathers major models from home and abroad, from language models to image generation, audio and video generation, speech synthesis, and speech recognition. Almost all AI large models that you can name can be used here.

  • No VPN required, direct connection in China, $1 USD credit upon registration
  • Global Models, All in One: Not only includes the big three of OpenAI, Gemini, and Claude, but also integrates major domestic models such as Qwen and Deepseek.
  • Comprehensive AI Capabilities: Covers language models, image generation, audio and video generation, speech synthesis, speech recognition, and other comprehensive AI capabilities.
  • OpenAI API Compatibility: Language models are perfectly compatible with the OpenAI API format, and can directly replace ChatGPT-like calls.
  • Price Consistent with Official: The price of top models (such as the GPT-4 series) is consistent with the official OpenAI price.

Model Lineup

🌍 Foreign AI Giantsimage.png

Major Domestic AI Models

image.png

Full-blooded Deepseek-r1

image.png

🎨 Text-to-Image Models

image.png

🎬 Text-to-Video Models

image.png

🎤 Speech Synthesis / Speech Recognition / Voice Cloning

image.png

🔑 Quick Start Guide:

  1. Register & Create API Key:
    • Visit the registration page https://gpt302.saaslink.net/teRK8Y to complete registration and receive $1 USD credit upon registration. If you haven't received it, please join the community according to the prompts on the page to contact and obtain it.
    • Go to the API Key management page https://dash.302.ai/apis/list to create your exclusive API Key.

image.png

Reminder: If the API option is not displayed on the left, please click "Personal Center" and set the address to "Overseas".

image.png

  1. Replace API Information:

    • API Endpoint: https://api.302.ai/v1
    • API Key: Your created API Key
    • Model Name: Enter the name of the model you want to use (supports all OpenAI/Gemini/Claude models)
  2. Enjoy!

    Taking pyVideoTrans video translation software as an example:

image.png

OpenAI SDK Usage Example:

python
from openai import OpenAI
client = OpenAI(
    api_key='sk-123456',  # Replace with your API Key
    base_url='https://api.302.ai/v1'
)

completion = client.chat.completions.create(
    model="gpt-4o",  # Replace with the model you want to use
    messages=[
        {"role": "system", "content": "You are an SRT subtitle translation assistant."},
        {
            "role": "user",
            "content": "Translate the SRT subtitles within the <INPUT> tags into English, ensuring the output conforms to the EBU-STL standard for SRT subtitles. <INPUT>............</INPUT>"
        }
    ]
)

print(completion.choices[0].message.content)

💰 Pricing Overview:

  • Top Models: Consistent with official OpenAI/Gemini/Claude prices.
  • Some Self-Deployed Models: More price competitive.

For a detailed price list, please click here to view: https://302.ai/pricing

image.png

Click here to register and experience it: https://gpt302.saaslink.net/teRK8Y