Gangmax Blog

VolcEngine

“VolcEngine(火山引擎)” is ByteDance’s AI platform, which provides API for third parties to use. Of cource you need to pay for it.

Add Credit

Go to “here“, type the ammount such as “10” and tap “充值汇款”, then you can scan the displayed barcode and use “Alipay/Wechatpay” to recharge.

Model List

Go to “home -> 火山方舟 -> 开通管理“, you can see all the models you can use.

Response API example

Go to “home -> 火山方舟 -> 开通管理“, select a model in the list, such as “Doubao-Seed-1.8“, tap “API 接入”,it will tell you have to use this model with an API call, such as:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
curl https://ark.cn-beijing.volces.com/api/v3/responses \
-H "Authorization: Bearer $ARK_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"model": "doubao-seed-1-8-251228",
"input": [
{
"role": "user",
"content": [
{
"type": "input_image",
"image_url": "https://oss.mxiqi.com/V1/AUC/20260301/IMG/2c24eefd37661"
},
{
"type": "input_image",
"image_url": "https://oss.mxiqi.com/V1/AUC/20260301/IMG/37591a998ae9c"
}, {
"type": "input_text",
"text": "这是什么?目前的价格大概是多少?"
}
]
}
]

You need to replace the “$ARK_API_KEY” part with your API key before running.

Comments