DXMakeup
preview
Base model: Flux.1 D
Trained words: 1 girl, absurdly beautiful, woman, young, black hair, perfect face, makeup, detailed hair, perfect face, perfect lips, perfect eyelashes, 1 girl, absurdly beautiful, woman, young, blonde hair, perfect face, makeup, detailed hair, perfect face, perfect lips, perfect eyelashes, 1 girl, absurdly beautiful, woman, young, red hair, perfect face, makeup, detailed hair, perfect face, perfect lips, perfect eyelashes
🧠 Usage (Python)
🔑
Get your MUAPI key from
muapi.ai/access-keys
1import requests, os
2url = "https://api.muapi.ai/api/v1/flux_dev_lora_image"
3headers = {"Content-Type": "application/json", "x-api-key": os.getenv("MUAPIAPP_API_KEY")}
4payload = {
5 "prompt": "masterpiece, best quality, 1girl, looking at viewer",
6 "model_id": [{"model": "civitai:655415@733265", "weight": 1.0}],
7 "width": 1024,
8 "height": 1024,
9 "num_images": 1
10}
11print(requests.post(url, headers=headers, json=payload).json())