Muapi/pony-xl-clamp-card-captor-sakura-animation-version-artist-style
018
[PONY XL] CLAMP 《Card Captor Sakura(Animation version)》/《魔卡少女樱(动画版)》 木之本樱/大道世知世- Artist Style
Base model: SDXL 1.0 Trained words: kinomoto sakura, daidouji tomoyo
🧠 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": "pony-xl-clamp-card-captor-sakuraanimation-version魔卡少女樱动画版-木之本樱大道世知世-artist-style",
"lora_strength": 1.0,
"width": 1024,
"height": 1024,
"num_images": 1
}
print(requests.post(url, headers=headers, json=payload).json())