Morpeah - Browndust2 / ブラウンダスト2 - モルフェア[Pony,Illustrious,Flux]
Base model: Flux.1 D
Trained words: Morpeah, huge breasts, red eyes, grey hair, long hair, twintails, hair between eyes,, Morpeahbeach, huge breasts, red eyes, long hair, twintails, hair between eyes, hair ornament, grey hair, black bikini, micro_thong_bikini_top, strapless, skindentation, jewelry, bracelet, black side-tie_bikini_bottom, black sandal heels, , Morpeahbunny, huge breasts, red eyes, long hair, twintails, hair between eyes, grey hair, mermaid_bunny, holographic_animal_ears_headband, holographic_side hair ribbons, white_detached_collar, holographic_bowtie, holographic_sideless_leotard, cleavage, white_detached_puff_sleeves, white_arm_strap, white_wrist_cuffs, white_fishnet_thighhighs, white_high heels,
🧠 Usage (Python)
🔑 Get your MUAPI key from muapi.ai/access-keys
import requests, os
url = "https://api.muapi.ai/api/v1/flux_dev_lora_image"
headers = {"Content-Type": "application/json", "x-api-key": os.getenv("MUAPIAPP_API_KEY")}
payload = {
"prompt": "masterpiece, best quality, 1girl, looking at viewer",
"model_id": [{"model": "civitai:733203@1290017", "weight": 1.0}],
"width": 1024,
"height": 1024,
"num_images": 1
}
print(requests.post(url, headers=headers, json=payload).json())
