Hybrid Multi-Language AI
API
Docs
Stable Diffusion 3.5の表現力と強力なChat AIを、完全無料で。
Generation / プロンプト生成
メインエンドポイント仕様
POST
/generate-img
Full Parameters
prompt
生成したい画像の説明。日本語対応。
REQUIRED
negative_prompt
除外したい要素(低品質、文字など)。
OPTIONAL
aspect_ratio
アスペクト比 (1:1, 16:9, 9:16, 4:3, 3:2)。
OPTIONAL
seed
乱数シード値 (0-4294967295)。
OPTIONAL
output_format
形式 (webp, png, jpg)。デフォルトはwebp。
OPTIONAL
CURL / TERMINAL
curl -X POST https://api.necco.xyz/generate-img \
-H "Content-Type: application/json" \
-d '{
"prompt": "サイバーパンクな街並み",
"negative_prompt": "low quality",
"aspect_ratio": "16:9",
"seed": 12345,
"output_format": "png"
}'
Upscale / 高解像度化
HDエンハンスエンジン
/upscale
POST
Full Parameters
image_url
元画像のURL。
REQUIRED
scale
拡大倍率 (2 or 4)。デフォルトは2。
OPTIONAL
face_enhance
顔の補正を有効にするか (true / false)。
OPTIONAL
CURL / UPSCALE
curl -X POST https://api.necco.xyz/upscale \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/image.jpg",
"scale": 4,
"face_enhance": true
}'
チャットAPI / モデル一覧
エンドポイント仕様
POST
/chat
リクエストパラメータ
model
利用する短縮モデル名。
OPTIONAL
messages
メッセージ配列。
REQUIRED
temperature
生成温度。
OPTIONAL
max_tokens
最大トークン数。
OPTIONAL
CURL / CHAT
curl -N -X POST https://api.necco.xyz/chat \
-H "Content-Type: application/json" \
-d '{
"model": "chimera",
"messages": [
{ "role": "system", "content": "You are a helpful assistant." },
{ "role": "user", "content": "自己紹介して" }
],
"temperature": 0.7
}'
利用可能な短縮モデル一覧 (抜粋)
フルモデル名のほうがかなり安定性が上がりますので、可能な限りフルモデル名をご利用ください。
| short | full | category |
|---|---|---|
deepseekr1-pro | TA/deepseek-ai/DeepSeek-R1 | General |
deepseek-v3 | TA/deepseek-ai/DeepSeek-V3 | General |
deepseekr | deepseek-reasoner | General |
gpt5-mini | gpt-5-mini | GPT |
gpt4.1-mini | gpt-4.1-mini | GPT |
gemini | gemini-3-flash-preview | General |
gemini | gemini-2.5-flash | General |
olmo32 | allenai/olmo-3-32b-think:free | General |
mimo | xiaomi/mimo-v2-flash:free | General |
nemotron30 | nvidia/nemotron-3-nano-30b-a3b:free | General |
devstral | mistralai/devstral-2512:free | General |
deepseek31 | nex-agi/deepseek-v3.1-nex-n1:free | General |
trinity | arcee-ai/trinity-mini:free | General |
chimera | tngtech/tng-r1t-chimera:free | General |
olmo | allenai/olmo-3.1-32b-think:free | General |
coder | kwaipilot/kat-coder-pro:free | Coding |
nemotron12 | nvidia/nemotron-nano-12b-v2-vl:free | General |
tongyi | alibaba/tongyi-deepresearch-30b-a3b:free | General |
nemotron9 | nvidia/nemotron-nano-9b-v2:free | General |
gpt120 | openai/gpt-oss-120b:free | GPT |
gpt20 | openai/gpt-oss-20b:free | GPT |
glm45 | z-ai/glm-4.5-air:free | General |
qwen3coder | qwen/qwen3-coder:free | Coding |
kimi | moonshotai/kimi-k2 | General |
dolphin | cognitivecomputations/dolphin-mistral-24b-venice-edition:free | General |
gemma2 | google/gemma-3n-e2b-it:free | Gemma |
deepseekr1 | deepseek/deepseek-r1-0528:free | Coding |
gemma4 | google/gemma-3n-e4b-it:free | Gemma |
qwen4 | qwen/qwen3-4b:free | Coding |
mistral24 | mistralai/mistral-small-3.1-24b-instruct:free | General |
gemma27 | google/gemma-3-27b-it:free | Gemma |
gemini | google/gemini-2.0-flash-exp:free | General |
llama70 | meta-llama/llama-3.3-70b-instruct:free | Llama |
llama405 | meta-llama/llama-3.1-405b-instruct:free | Llama |
上記に加え、default は nvidia/nemotron-3-nano-30b-a3b:free にマッピングされています。
実際のレスポンスでは /models エンドポイントから動的に取得してください。