Advanced female human character generator producing realistic, diverse, and highly detailed female portraits. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
待機中

$0.0151回あたり·~66 / $1

An enigmatic woman with piercing emerald green eyes. Her long, dark, braided hair is adorned with intricate silver runes. She wears a flowing, dark velvet cloak, partially obscuring her face. Standing in a dimly lit, ancient stone ruins, with misty fog swirling around her feet. Dramatic backlighting, deep shadows, rich jewel tones, cinematic, dark fantasy art, 8K.

A captivating young woman, elegant and poised. Her eyes, filled with depth, gaze directly at the viewer. She has flowing, soft waves of dark hair and subtle, natural makeup. Wearing a delicate, ethereal silk gown. Shot in a soft, warm studio light with shallow depth of field, subtle bokeh background. Golden hour tones, highly detailed, cinematic portrait, 8K, photorealistic.

A striking cyberpunk woman, confident and edgy. Her short, electric blue hair glows softly under neon city lights. She has intricate facial tattoos and a small, subtle data implant near her ear. Wearing a jacket. Shot at night in a bustling, rainy futuristic city street. Dynamic lighting, high contrast, atmospheric, volumetric fog, digital art, 4K.

A radiant woman, naturally beautiful with a gentle smile. Her long, sun-kissed blonde hair flows in a light breeze. She wears a simple, bohemian-style white linen dress. Set against a blurred backdrop of a sunlit lavender field at sunset. Soft, diffused natural light, warm pastel colors, authentic, dreamlike, film grain, 8K.

A chic, modern woman with a sharp, angular bob haircut. Her expression is cool and composed. She wears an oversized, tailored charcoal grey blazer, emphasizing clean lines. Posed in a minimalist architectural interior with geometric shapes and soft, indirect lighting. Clean lines, editorial photography, high fashion, neutral color palette, crisp details, 8K.
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/female-human with your input as JSON. The endpoint returns a prediction id. Start polling the result endpoint around every 2 seconds, increase the interval for long-running tasks, and stop on any terminal status. On completed, read URLs from data.outputs. Examples for Female Human below.
# Submit the prediction
curl --fail-with-body --connect-timeout 10 --max-time 60 \
-X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/female-human" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"size": "1024*1024",
"seed": -1,
"output_format": "jpeg",
"enable_base64_output": false,
"enable_sync_mode": false
}'
# Wait at least 2 seconds, then poll. Safe GET requests may be retried.
curl --fail-with-body --connect-timeout 10 --max-time 30 \
--retry 4 --retry-all-errors --retry-delay 1 \
-X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# Start at 2 seconds and increase the interval for long-running tasks.
# Stop on completed, failed, cancelled, or timeout.// npm install wavespeed
const { Client } = require('wavespeed');
const apiKey = process.env.WAVESPEED_API_KEY;
if (!apiKey) throw new Error('Set WAVESPEED_API_KEY');
const client = new Client(apiKey);
try {
const result = await client.run("wavespeed-ai/female-human", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"size": "1024*1024",
"seed": -1,
"output_format": "jpeg",
"enable_base64_output": false,
"enable_sync_mode": false
}, {
timeout: 3600,
pollInterval: 2.0,
});
console.log(result.outputs);
} catch (error) {
console.error('Generation failed:', error);
process.exitCode = 1;
}# pip install wavespeed
import os
from wavespeed import Client
client = Client(api_key=os.environ["WAVESPEED_API_KEY"])
try:
output = client.run(
"wavespeed-ai/female-human",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"size": "1024*1024",
"seed": -1,
"output_format": "jpeg",
"enable_base64_output": false,
"enable_sync_mode": false
},
timeout=3600.0,
poll_interval=2.0,
)
print(output["outputs"])
except Exception as error:
raise SystemExit(f"Generation failed: {error}") from errorFemale Human is a WaveSpeedAI model for image generation, exposed as a REST API on WaveSpeedAI. Advanced female human character generator producing realistic, diverse, and highly detailed female portraits. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID. Poll the result endpoint starting around every 2 seconds, increase the interval for long-running tasks, and stop on any terminal status. The playground generates production-oriented Python, JavaScript, and cURL examples with timeouts, transient-error handling, and safe GET retries. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/wavespeed-ai/female-human.
Female Human starts at $0.015 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `size`, `seed`, `enable_base64_output`, `enable_sync_mode`, `output_format`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/wavespeed-ai/female-human.
Average end-to-end generation time on WaveSpeedAI is around 8 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.
Commercial usage rights depend on the model's license, set by its provider (WaveSpeedAI). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.