Muapi/prisma-illya-style-fate-kaleid-liner-prisma-illustrious-pony-sd1.5
08
Prisma Illya Style (Fate/Kaleid liner Prisma) [Illustrious & Pony & SD1.5]
Base model: Pony Trained words: illyasviel von einzbern, red eyes, white hair, long hair, red eyes, , chloe von einzbern, yellow eyes, pink hair, long hair, one side up, dark skin, , miyu edelfelt, brown eyes, black hair, hair ornament,
๐ง 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": "prisma-illya-style-fate-kaleid-liner-prisma-illustrious-pony-sd1.5",
"lora_strength": 1.0,
"width": 1024,
"height": 1024,
"num_images": 1
}
print(requests.post(url, headers=headers, json=payload).json())