{{ t('cloudServer') }}
{{ ecsCount }}{{ t('servers') }}
{{ runningEcsCount }} {{ t('running') }}
{{ t('aiCalls') }}
{{ monthlyAiCalls }}{{ t('calls') }}
{{ t('running') }} {{ monthlyAiTokens }} Tokens
{{ t('accountBalance') }}
¥{{ userBalance.toFixed(2) }}
{{ t('lowBalance') }} {{ t('running') }} ¥{{ monthlyCost }}
{{ t('aiCost') }}
¥{{ aiCost }}
{{ t('payAsYouGo') }}

{{ t('quickActions') }}

{{ t('createServer') }}
{{ t('viewPrices') }}
{{ t('accountRecharge') }}
{{ t('viewUsage') }}
{{ model.name }}
{{ model.provider }}
{{ t('hot') }} {{ t('new') }}
{{ t('input') }}: ¥{{ model.inputPrice.toFixed(4) }} {{ model.unit || t('unitTokens') }}
{{ t('output') }}: ¥{{ model.outputPrice.toFixed(4) }} {{ model.unit || t('unitTokens') }}
{{ t('cache') }}: ¥{{ model.cacheInputPrice.toFixed(4) }} {{ t('unitTokens') }}
{{ model.name }}
{{ model.provider }}
{{ t('hot') }} {{ t('new') }}
{{ t('input') }}: ¥{{ model.inputPrice.toFixed(4) }} {{ model.unit || t('unitTokens') }}
{{ t('output') }}: ¥{{ model.outputPrice.toFixed(4) }} {{ model.unit || t('unitTokens') }}
{{ t('cache') }}: ¥{{ model.cacheInputPrice.toFixed(4) }} {{ t('unitTokens') }}
{{ model.name }}
{{ model.provider }}
{{ t('hot') }} {{ t('new') }}
{{ t('input') }}: ¥{{ model.inputPrice.toFixed(4) }} {{ model.unit || t('unitTokens') }}
{{ t('output') }}: ¥{{ model.outputPrice.toFixed(4) }} {{ model.unit || t('unitTokens') }}
{{ model.name }}
{{ model.provider }}
{{ t('hot') }} {{ t('new') }}
{{ t('input') }}: ¥{{ model.inputPrice.toFixed(4) }} {{ model.unit || t('unitTokens') }}
{{ t('output') }}: ¥{{ model.outputPrice.toFixed(4) }} {{ model.unit || t('unitTokens') }}
{{ t('cache') }}: ¥{{ model.cacheInputPrice.toFixed(4) }} {{ t('unitTokens') }}
{{ t('totalCalls') }}
{{ usageStats.totalCalls }}
{{ t('totalTokens') }}
{{ usageStats.totalTokens }}
{{ t('totalCost') }}
¥{{ usageStats.totalCost.toFixed(2) }}
{{ label }}
{{ formatChartDate(item.time) }}
创建实例
{{ selectedEcs.id }} {{ selectedEcs.name }} {{ getStatusText(selectedEcs.status) }} {{ selectedEcs.spec }} {{ selectedEcs.region }} {{ selectedEcs.publicIp || '-' }} {{ selectedEcs.createdAt }}
包年包月 按量付费
{{ flavor.name }} ¥{{ ecsConfig.onDemand ? flavor.price.hourly : flavor.price.monthly }}/{{ ecsConfig.onDemand ? '时' : '月' }}
{{ demandStatus.ecs.satisfied ? '可售' : '不可售' }} {{ demandStatus.ecs.message }}
{{ demandStatus.ebs.satisfied ? '可售' : '不可售' }} {{ demandStatus.ebs.message }}
{{ ecsConfig.bootDiskSize }} GB
{{ ecsConfig.bandwidth }} Mbps
{{ demandStatus.eip.satisfied ? '可售' : '不可售' }} {{ demandStatus.eip.message }}
计费模式 {{ ecsConfig.onDemand ? '按量付费' : '包年包月' }}
地域 {{ ecsConfig.regionID === 'bb9fdb42056f11eda1610242ac110002' ? '北京' : ecsConfig.regionID === 'bb9fdb42056f11eda1610242ac110003' ? '上海' : '广州' }}
实例规格 {{ ecsConfig.flavorName }}
镜像 {{ ecsConfig.imageID }}
系统盘 {{ ecsConfig.bootDiskType }} {{ ecsConfig.bootDiskSize }} GB
公网IP {{ ecsConfig.extIP === '0' ? '不使用' : ecsConfig.extIP === '1' ? '自动分配 ' + ecsConfig.bandwidth + 'Mbps' : '使用已有' }}
购买时长 {{ ecsConfig.cycleCount }}个月
实例费用 ¥{{ calculateInstancePrice() }}
带宽费用 ¥{{ calculateBandwidthPrice() }}
总计 ¥{{ calculateTotalPrice() }}
立即购买

{{ t('apiKeyUsage') }}

{{ key.name }}
{{ key.key_prefix }}
{{ t('created') }} {{ formatDate(key.created_at) }}
{{ key.status === 'active' ? t('active') : t('inactive') }}
{{ t('disable') }} {{ t('enable') }} {{ t('delete') }}

{{ t('serviceOverview') }}

{{ t('platformAddress') }}: https://nebulai.top
{{ t('apiBasePath') }}: /api/proxy
{{ t('version') }}: v1.0.0
{{ t('authMethod') }}: Bearer Token (API Key)

{{ t('importantNote') }}

{{ t('coreFeatures') }}

  • {{ t('aiChat') }}
  • {{ t('textVectorization') }}
  • {{ t('imageGeneration') }}
  • {{ t('videoGeneration') }}
  • {{ t('apiKeyMgmt') }}
  • {{ t('balanceQuery') }}

{{ t('quickStart') }}

{{ t('getApiKey') }}

{{ t('getApiKeyDesc') }}

{{ t('callApi') }}

{{ t('callApiDesc') }}

curl -X POST https://nebulai.top/api/proxy/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "cloud-llm",
    "messages": [{"role": "user", "content": "你好"}],
    "temperature": 0.7,
    "max_tokens": 512
  }'

{{ t('securityWarning') }}

{{ t('chatApi') }}

{{ t('apiMethod') }} {{ t('apiPath') }} {{ t('core') }}
{{ t('apiDesc') }}

{{ t('requestParams') }}

{{ t('parameter') }}{{ t('type') }}{{ t('required') }}{{ t('description') }}
modelstring模型ID,默认cloud-llm
messagesarray对话消息列表,包含role和content
streamboolean是否流式返回,默认false
max_tokensinteger最大生成Token数,默认512
temperaturefloat温度采样,范围(0, 2),默认0.7
top_pfloattop_p采样,范围(0, 1]
frequency_penaltyfloat频率惩罚,范围[-2, 2]
presence_penaltyfloat存在惩罚,范围[-2.0, 2.0]
stopstring/array停止标识

{{ t('messagesFormat') }}

[
  {"role": "system", "content": "你是一个有帮助的助手"},
  {"role": "user", "content": "你好"},
  {"role": "assistant", "content": "你好!有什么可以帮助你的吗?"}
]

{{ t('responseExample') }}

{ "success": true, "id": "chatcmpl-abc123", "model": "cloud-llm", "choices": [{ "index": 0, "message": {"role": "assistant", "content": "你好!我是AI助手..."}, "finish_reason": "stop" }], "billing": { "input_tokens": 10, "output_tokens": 25, "total_tokens": 35, "cost": 0.00011, "balance": 99.99989, "currency": "CNY" } }

{{ t('supportedModels') }}

{{ t('modelId') }}{{ t('modelName') }}{{ t('inputPrice') }}{{ t('outputPrice') }}
cloud-llmDeepSeek-V3¥1.00/百万¥4.00/百万
glm-4GLM-4¥1.60/百万¥1.60/百万
glm-4-flashGLM-4-Flash¥0.16/百万¥0.16/百万

{{ t('curlExample') }}

curl -X POST https://nebulai.top/api/proxy/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "cloud-llm",
    "messages": [{"role": "user", "content": "你好"}],
    "temperature": 0.7,
    "max_tokens": 512
  }'

{{ t('pythonExample') }}

import requests

API_BASE = "https://nebulai.top/api/proxy"
API_KEY = "sk-your-api-key-here"

headers = {
    "Authorization": f"Bearer {API_KEY}",
    "Content-Type": "application/json"
}

data = {
    "model": "cloud-llm",
    "messages": [{"role": "user", "content": "你好"}],
    "temperature": 0.7,
    "max_tokens": 1024
}

response = requests.post(
    f"{API_BASE}/chat/completions",
    headers=headers,
    json=data,
    timeout=60
)

result = response.json()
print("AI回复:", result['choices'][0]['message']['content'])
print("费用:", result['billing']['cost'])

{{ t('textEmbeddingApi') }}

{{ t('apiMethod') }} /api/proxy/embeddings
{{ t('textVectorization') }}

{{ t('requestParams') }}

{{ t('parameter') }}{{ t('type') }}{{ t('required') }}{{ t('description') }}
modelstring向量化模型ID,默认text-embedding-v3
inputstring/array要向量化的文本或文本列表
encoding_formatstring编码格式:float或base64

{{ t('curlExample') }}

curl -X POST https://nebulai.top/api/proxy/embeddings \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "input": "这是一段需要向量化的文本"
  }'

{{ t('batchEmbedding') }}

curl -X POST https://nebulai.top/api/proxy/embeddings \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "input": ["第一段文本", "第二段文本", "第三段文本"]
  }'

{{ t('imageApi') }}

{{ t('apiMethod') }} /api/proxy/images/generate
{{ t('imageGeneration') }}

{{ t('requestParams') }}

{{ t('parameter') }}{{ t('type') }}{{ t('required') }}{{ t('description') }}
promptstring图像描述文本
modelstring图像生成模型
ninteger生成图片数量,默认1
sizestring图片尺寸,如"1024x1024"
response_formatstring响应格式:url或b64_json

{{ t('curlExample') }}

curl -X POST https://nebulai.top/api/proxy/images/generate \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "一只可爱的橘猫在草地上玩耍",
    "n": 1,
    "size": "512x512"
  }'

{{ t('videoApi') }}

{{ t('apiMethod') }} /api/proxy/video/generate
{{ t('videoGeneration') }}

{{ t('requestParams') }}

{{ t('parameter') }}{{ t('type') }}{{ t('required') }}{{ t('description') }}
modelstring视频生成模型(Sdance2.0 或 Sdance2.0-fast)
contentarray内容输入,包含type和text字段
ratiostring视频比例,默认16:9
durationinteger视频时长(秒),默认5
watermarkboolean是否添加水印,默认false

{{ t('curlExample') }}

curl -X POST https://nebulai.top/api/proxy/video/generate \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "Sdance2.0-fast",
    "content": [
      {
        "type": "text",
        "text": "写实风格,晴朗的蓝天之下,一大片白色的雏菊花田"
      }
    ],
    "ratio": "16:9",
    "duration": 5
  }'

{{ t('responseExample') }}

{ "success": true, "task_id": "video-task-12345", "message": "任务已提交,请通过任务ID查询进度" }
GET /api/proxy/video/tasks/{task_id}
{{ t('queryVideoStatus') }}

{{ t('curlExample') }}

curl "https://nebulai.top/api/proxy/video/tasks/video-task-12345?apiKey=YOUR_API_KEY"

{{ t('responseExample') }}

{ "task_id": "video-task-12345", "status": "completed", "result": { "video_url": "https://example.com/video.mp4" }, "duration": 5, "ratio": "16:9" }

{{ t('statusDescription') }}

{{ t('status') }}{{ t('description') }}
pending{{ t('pending') }}
running{{ t('running') }}
completed{{ t('completed') }}
failed{{ t('failed') }}

{{ t('rerankApi') }}

{{ t('apiMethod') }} /v1/rerank
{{ t('rerankDesc') }}

{{ t('requestParams') }}

{{ t('parameter') }}{{ t('type') }}{{ t('required') }}{{ t('description') }}
modelstring重排序模型ID,默认bge-reranker
querystring查询文本
documentsarray候选文档列表
top_ninteger返回前N个结果,默认全部返回
return_documentsboolean是否返回原始文档内容,默认true

调用示例(curl)

curl -X POST https://nebulai.top/v1/rerank \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "query": "人工智能最新进展",
    "documents": [
      "深度学习是机器学习的一个分支...",
      "大语言模型在自然语言处理中取得了重大突破...",
      "计算机视觉技术近年来发展迅速..."
    ],
    "top_n": 2
  }'

{{ t('modelsApi') }}

GET /v1/models {{ t('common') }}
{{ t('modelsDesc') }}

{{ t('requestParams') }}

{{ t('parameter') }}{{ t('type') }}{{ t('required') }}{{ t('description') }}
typestring模型类型过滤:text/embedding/vision/rerank/all,默认all

{{ t('curlExample') }}

curl -X GET "https://nebulai.top/v1/models" \
  -H "Authorization: Bearer YOUR_API_KEY"

{{ t('pythonExample') }}

import requests

API_BASE = "https://nebulai.top"
API_KEY = "sk-your-api-key-here"

headers = {
    "Authorization": f"Bearer {API_KEY}",
    "Content-Type": "application/json"
}

# 获取所有模型
response = requests.get(f"{API_BASE}/v1/models", headers=headers)
models = response.json()

# 获取文本模型
response = requests.get(f"{API_BASE}/v1/models?type=text", headers=headers)
text_models = response.json()

print("可用模型列表:")
for model in models['data']:
    print(f"- {model['id']}: {model['name']} ({model['type']})")

响应示例

{ "success": true, "data": [ { "id": "deepseek-v4-pro", "name": "DeepSeek-V4-Pro", "type": "text", "provider": "深度求索", "input_price": 0.012, "output_price": 0.024, "description": "高性能大语言模型,支持复杂推理" }, { "id": "text-embedding-v3", "name": "Text-Embedding-V3", "type": "embedding", "provider": "阿里", "input_price": 0.002, "output_price": 0, "description": "文本向量化模型" }, { "id": "qwen-image-plus", "name": "Qwen-Image-Plus", "type": "vision", "provider": "阿里", "input_price": 0.15, "output_price": 0, "description": "图像生成模型" }, { "id": "bge-reranker", "name": "BGE-Reranker", "type": "rerank", "provider": "BAAI", "input_price": 0.5, "output_price": 0, "description": "语义重排序模型" } ], "total": 4, "types": ["text", "embedding", "vision", "rerank"] }

四种核心模型调用指南

💬

Chat Completions

对话生成

POST /api/proxy/chat/completions
流式响应 多轮对话 参数可调

curl 示例

curl -X POST https://nebulai.top/api/proxy/chat/completions \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "DeepSeek-V3",
    "messages": [
      {"role": "user", "content": "你好"}
    ],
    "stream": false
  }'
📊

Embeddings

文本向量化

POST /api/proxy/embeddings
批量处理 向量检索 语义匹配

curl 示例

curl -X POST https://nebulai.top/api/proxy/embeddings \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "text-embedding-v4",
    "input": "人工智能最新进展",
    "encoding_format": "float"
  }'
🎨

Images

图像生成

POST /api/proxy/images/generate
文生图 多图生成 尺寸可调

curl 示例

curl -X POST https://nebulai.top/api/proxy/images/generate \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "一只可爱的橘猫在草地上玩耍,阳光明媚",
    "n": 1,
    "size": "512x512"
  }'
🔄

Rerank

语义重排序

POST /api/proxy/v1/rerank
搜索增强 结果排序 相关性评分

curl 示例

curl -X POST https://nebulai.top/api/proxy/v1/rerank \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen3-rerank",
    "query": "什么是人工智能",
    "documents": [
      "AI是计算机科学的分支",
      "机器学习是AI的核心技术",
      "深度学习是机器学习的一种"
    ],
    "top_n": 2
  }'

📖 {{ t('useFlow') }}

  1. {{ t('getApiKey') }}: {{ t('getApiKeyDesc') }}
  2. {{ t('viewModels') }}: 调用 GET /v1/models {{ t('getAvailableModels') }}
  3. {{ t('selectModel') }}: {{ t('selectModelDesc') }}
  4. {{ t('callApi') }}: {{ t('callApiDesc') }}
  5. {{ t('viewConsumption') }}: {{ t('viewConsumptionDesc') }}

💡 {{ t('tips') }}

  • {{ t('streamingResponse') }}: {{ t('streamingDesc') }}
  • {{ t('batchProcessing') }}: {{ t('batchDesc') }}
  • {{ t('priceReference') }}: {{ t('priceDesc') }}
  • {{ t('errorHandling') }}: {{ t('errorHandlingDesc') }}

🔄 如何更换模型

更换模型非常简单,只需要修改请求中的 model 参数即可:

示例:从 DeepSeek 切换到 Qwen

# 原请求(使用DeepSeek)
curl -X POST https://nebulai.top/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{"model": "deepseek-v4-pro", "messages": [...]}'

# 更换后(使用Qwen)
curl -X POST https://nebulai.top/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{"model": "qwen3-32b", "messages": [...]}'

更换模型的步骤

  1. 查询可用模型: 调用 GET /v1/models 获取所有可用模型
  2. 选择目标模型: 根据模型类型和价格选择合适的模型
  3. 修改请求参数: 将请求中的 model 字段改为目标模型ID
  4. 测试调用: 发起请求验证是否正常工作

各API更换模型的位置

API参数位置示例
Chat Completionsmodel 字段"model": "deepseek-v4-pro"
Embeddingsmodel 字段"model": "text-embedding-v3"
Imagesmodel 字段(可选)"model": "qwen-image-plus"
Rerankmodel 字段(可选)"model": "bge-reranker"

提示: 如果不指定 model 参数,API会使用默认模型。不同类型的API有不同的默认模型。

{{ t('balanceAndBillingApi') }}

GET /api/proxy/balance/{user_id}
{{ t('queryBalance') }}

{{ t('curlExample') }}

curl "https://nebulai.top/api/proxy/balance/user123"
GET /api/proxy/usage/{user_id}?period={period}
{{ t('queryUsage') }}

{{ t('curlExample') }}

curl "https://nebulai.top/api/proxy/usage/user123?period=week"

{{ t('errorCodeDesc') }}

{{ t('httpStatus') }}{{ t('errorCode') }}{{ t('description') }}{{ t('solution') }}
401MISSING_API_KEY{{ t('missingApiKey') }}{{ t('addAuthorization') }}
401INVALID_API_KEY{{ t('invalidApiKey') }}{{ t('checkApiKey') }}
402INSUFFICIENT_BALANCE{{ t('insufficientBalance') }}{{ t('rechargeTry') }}
403PERMISSION_DENIED{{ t('permissionDenied') }}{{ t('checkPermission') }}
400INVALID_REQUEST{{ t('invalidRequest') }}{{ t('checkParams') }}
404MODEL_NOT_FOUND{{ t('modelNotFound') }}{{ t('queryModels') }}
429RATE_LIMIT_EXCEEDED{{ t('rateLimitExceeded') }}{{ t('retryLater') }} {{ t('contactSupport') }}
500PROXY_ERROR{{ t('proxyError') }}{{ t('retryLater') }}

{{ t('sdkExamples') }}

{{ t('javascript') }}

const axios = require('axios');

const API_BASE = 'https://nebulai.top/api/proxy';
const API_KEY = 'sk-your-api-key-here';

async function chat() {
  const response = await axios.post(
    `${API_BASE}/chat/completions`,
    {
      model: 'cloud-llm',
      messages: [{ role: 'user', content: '你好' }],
      temperature: 0.7,
      max_tokens: 512
    },
    {
      headers: {
        'Authorization': `Bearer ${API_KEY}`,
        'Content-Type': 'application/json'
      }
    }
  );
  
  console.log('AI回复:', response.data.choices[0].message.content);
  console.log('费用:', response.data.billing.cost);
}

async function getEmbedding(text) {
  const response = await axios.post(
    `${API_BASE}/embeddings`,
    { input: text },
    {
      headers: {
        'Authorization': `Bearer ${API_KEY}`,
        'Content-Type': 'application/json'
      }
    }
  );
  return response.data.data[0].embedding;
}

chat();

{{ t('python') }}

import requests

API_BASE = "https://nebulai.top/api/proxy"
API_KEY = "sk-your-api-key-here"

def chat():
    headers = {
        "Authorization": f"Bearer {API_KEY}",
        "Content-Type": "application/json"
    }
    
    data = {
        "model": "cloud-llm",
        "messages": [{"role": "user", "content": "你好"}],
        "temperature": 0.7,
        "max_tokens": 512
    }
    
    response = requests.post(f"{API_BASE}/chat/completions", headers=headers, json=data)
    result = response.json()
    
    print("AI回复:", result['choices'][0]['message']['content'])
    print("费用:", result['billing']['cost'])

def get_embedding(text):
    headers = {
        "Authorization": f"Bearer {API_KEY}",
        "Content-Type": "application/json"
    }
    
    data = {"input": text}
    response = requests.post(f"{API_BASE}/embeddings", headers=headers, json=data)
    return response.json()['data'][0]['embedding']

if __name__ == "__main__":
    chat()

curl

# 对话接口
curl -X POST https://nebulai.top/api/proxy/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "cloud-llm",
    "messages": [{"role": "user", "content": "你好"}],
    "temperature": 0.7
  }'

# 向量化接口
curl -X POST https://nebulai.top/api/proxy/embeddings \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input": "这是一段文本"}'

# 查询余额
curl "https://nebulai.top/api/proxy/balance/user123"

{{ t('bestPractices') }}

  • {{ t('apiKeySecurity') }}
  • {{ t('timeoutSetting') }}
  • {{ t('errorRetry') }}
  • {{ t('tokenLimit') }}
  • {{ t('permissionControl') }}
  • {{ t('requestFrequency') }}
  • {{ t('billingMethod') }}
  • {{ t('contactUs') }}: {{ t('contactEmail') }}
{{ t('currentBalance') }}
¥{{ userBalance.toFixed(2) }}
{{ t('recharge') }}
本产品只可在中国境外使用,请先自助获取境外网络或联系我们获取SDWAN产品
📦 {{ t('proxyType') }} {{ staticConfigSections.proxyType ? '▼' : '▶' }}
🔧 {{ t('proxyFormat') }} {{ staticConfigSections.proxyFormat ? '▼' : '▶' }}
🌍 {{ t('country') }} {{ staticConfigSections.country ? '▼' : '▶' }}
{{ country.country_name }} {{ country.country_code }}
¥{{ country.per_proxy_price.toFixed(2) }}/个
📅 {{ t('duration') }} {{ staticConfigSections.duration ? '▼' : '▶' }}
🌐 {{ t('bandwidth') }} {{ staticConfigSections.bandwidth ? '▼' : '▶' }}
🔢 {{ t('quantity') }} {{ staticConfigSections.quantity ? '▼' : '▶' }}
{{ qty }}个
⚙️ {{ t('advancedSettings') }} {{ staticConfigSections.advanced ? '▼' : '▶' }}
{{ t('quantity') }}: {{ staticConfig.quantity }}
{{ t('unitPrice') }}: ¥{{ staticUnitPrice.toFixed(2) }}
{{ t('totalCost') }}: ¥{{ staticTotalCost.toFixed(2) }}
{{ t('purchase') }}
{{ t('queryBalance') }}
¥{{ ipBalance.toFixed(2) }}
{{ t('refreshBalance') }}
本产品只可在中国境外使用,请先自助获取境外网络或联系我们获取SDWAN产品
📦 {{ t('proxyType') }} {{ dynamicConfigSections.proxyType ? '▼' : '▶' }}
🔧 {{ t('proxyFormat') }} {{ dynamicConfigSections.proxyFormat ? '▼' : '▶' }}
🌍 {{ t('location') }} {{ dynamicConfigSections.location ? '▼' : '▶' }}
📦 {{ t('selectPackage') }} {{ dynamicConfigSections.package ? '▼' : '▶' }}
{{ dynamicConfig.selectedPackage === pkg.gigabyte ? '✓' : '' }} {{ pkg.en_name }} {{ pkg.gigabyte }}GB / {{ pkg.days }}天
¥{{ pkg.per_proxy_price.toFixed(2) }}
{{ t('gigabyte') }}: {{ dynamicConfig.selectedPackage }} GB
{{ t('days') }}: {{ dynamicSelectedPackageDays }} {{ t('days') }}
{{ t('totalCost') }}: ¥{{ dynamicTotalCost.toFixed(2) }}
{{ t('purchase') }}
{{ t('queryBalance') }}
¥{{ ipBalance.toFixed(2) }}
刷新余额
本产品只可在中国境外使用,请先自助获取境外网络或联系我们获取SDWAN产品
{{ t('refresh') }}
{{ t('refresh') }}