302.AIのAPIは、私たちがクラウドGPU上で独自にデプロイしたモデルに由来します。一部のモデルはオープンソースモデルで、一部のモデルは私たちが独自に微調整または開発したものです。 Request
Body Params application/json
{
"prompt": "フランスブルドッグが一枚のスポンサーボードを掲げています:「猛犬在宅」",
"image_size": {
"width": 1024,
"height": 768
}
}
Request Code Samples
curl --location --request POST 'https://api.302.ai/302/submit/qwen-image-2512' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"prompt": "フランスブルドッグが一枚のスポンサーボードを掲げています:「猛犬在宅」",
"image_size": {
"width": 1024,
"height": 768
}
}'
Responses
application/json {
"images": [
{
"url": "https://file.302.ai/gpt/imgs/20260107/34a8758489e02a195cbe24ff333cafac.png",
"content_type": "image/png",
"file_size": 0,
"width": 1024,
"height": 768
}
],
"seed": 504078170,
"has_nsfw_concepts": [
false
],
"debug_latents": null,
"debug_per_pass_latents": null
}
Modified at 2026-01-07 06:31:59