Muapi/a3-pony-kohaku-sdxl-lora-ellen-joe-zenless-zone-zero-mihoyo-collection
029
( A3 | Pony | Kohaku) SDXL Lora-艾莲·乔(鲨鱼妹)-Ellen Joe-绝区零-Zenless Zone Zero-MIHOYO Collection 米家全家桶系列
Base model: SDXL 1.0 Trained words: Ellen Joe, maid, shark tail, (shark girl:0.5), 1girl, red eyes, tail, pantyhose, multicolored hair, black footwear, short sleeves, apron, wrist cuffs, maidheaddress,
🧠 Usage (Python)
🔑 Get your MUAPI key from muapi.ai/access-keys
import requests, os
url = "https://api.muapi.ai/api/v1/sdxl-lora-image"
headers = {"Content-Type": "application/json", "x-api-key": os.getenv("MUAPIAPP_API_KEY")}
payload = {
"prompt": "masterpiece, best quality",
"lora_model": "a3-pony-kohaku-sdxl-lora-艾莲乔鲨鱼妹-ellen-joe-绝区零-zenless-zone-zero-mihoyo-collection-米家全家桶系列",
"lora_strength": 1.0,
"width": 1024,
"height": 1024,
"num_images": 1
}
print(requests.post(url, headers=headers, json=payload).json())