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-proTA/deepseek-ai/DeepSeek-R1General
deepseek-v3TA/deepseek-ai/DeepSeek-V3General
deepseekrdeepseek-reasonerGeneral
gpt5-minigpt-5-miniGPT
gpt4.1-minigpt-4.1-miniGPT
geminigemini-3-flash-previewGeneral
geminigemini-2.5-flashGeneral
olmo32allenai/olmo-3-32b-think:freeGeneral
mimoxiaomi/mimo-v2-flash:freeGeneral
nemotron30nvidia/nemotron-3-nano-30b-a3b:freeGeneral
devstralmistralai/devstral-2512:freeGeneral
deepseek31nex-agi/deepseek-v3.1-nex-n1:freeGeneral
trinityarcee-ai/trinity-mini:freeGeneral
chimeratngtech/tng-r1t-chimera:freeGeneral
olmoallenai/olmo-3.1-32b-think:freeGeneral
coderkwaipilot/kat-coder-pro:freeCoding
nemotron12nvidia/nemotron-nano-12b-v2-vl:freeGeneral
tongyialibaba/tongyi-deepresearch-30b-a3b:freeGeneral
nemotron9nvidia/nemotron-nano-9b-v2:freeGeneral
gpt120openai/gpt-oss-120b:freeGPT
gpt20openai/gpt-oss-20b:freeGPT
glm45z-ai/glm-4.5-air:freeGeneral
qwen3coderqwen/qwen3-coder:freeCoding
kimimoonshotai/kimi-k2General
dolphincognitivecomputations/dolphin-mistral-24b-venice-edition:freeGeneral
gemma2google/gemma-3n-e2b-it:freeGemma
deepseekr1deepseek/deepseek-r1-0528:freeCoding
gemma4google/gemma-3n-e4b-it:freeGemma
qwen4qwen/qwen3-4b:freeCoding
mistral24mistralai/mistral-small-3.1-24b-instruct:freeGeneral
gemma27google/gemma-3-27b-it:freeGemma
geminigoogle/gemini-2.0-flash-exp:freeGeneral
llama70meta-llama/llama-3.3-70b-instruct:freeLlama
llama405meta-llama/llama-3.1-405b-instruct:freeLlama

上記に加え、defaultnvidia/nemotron-3-nano-30b-a3b:free にマッピングされています。
実際のレスポンスでは /models エンドポイントから動的に取得してください。

Avatar

DEVELOPED BY NECCO

Chief Architecture & Design