POST/v1/chat/completions
OpenAI-compatible chat completions with streaming support on most models.
curl http://jankrouter.waifly.com/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3-guard-8b",
"messages": [
{"role": "user", "content": "Hi"}
]
}'POST/v1/images/generations
Text-to-image generation across 6 models, from SDXL Lightning to Nanobanana Pro.
curl http://jankrouter.waifly.com/v1/images/generations \
-H "Content-Type: application/json" \
-d '{
"model": "lucid-origin",
"prompt": "A cat astronaut in space",
"size": "1024x1024"
}'POST/v1/images/edits
Edit and inpaint images across 5 supported models.
curl http://jankrouter.waifly.com/v1/images/edits \
-H "Content-Type: application/json" \
-d '{
"model": "lucid-origin",
"prompt": "Change the cat to a dog",
"image": "base64data...",
"size": "1024x1024"
}'