Deploy Stable Diffusion on io.net in under 60 seconds using one-click ComfyUI or Automatic1111 templates. Run SDXL, SD 1.5, or custom checkpoints on RTX 4090 ($0.18/hr) or A100 ($1.10/hr) with web UI access and API endpoints.

Quick Deploy

ComfyUI (Recommended):

io deploy comfyui --gpu RTX4090 --name sd-comfyui
# URL: https://xxx.ionet.cloud (web UI)
# Cost: $0.18/hr

Automatic1111:

io deploy automatic1111 --gpu RTX4090 --name sd-a1111
# URL: https://xxx.ionet.cloud:7860
# Cost: $0.18/hr

Custom Deployment:

io deploy --image stabilityai/stable-diffusion:latest \
  --gpu A100 \
  --port 8000 \
  --name custom-sd

Performance

ModelGPUImages/MinCost per 100 Images
SD 1.5RTX 409030$0.10
SDXLRTX 409010$0.30
SDXLA10015$1.22

API Access

import requests

response = requests.post(
    "https://xxx.ionet.cloud/sdapi/v1/txt2img",
    json={
        "prompt": "beautiful landscape, detailed, 8k",
        "steps": 25,
        "width": 1024,
        "height": 1024
    }
)

image = response.json()['images'][0]

Deploy Stable Diffusion on io.net — one-click setup, $0.18/hr, web UI + API.