## Basic tool info Tool name: Bad_Girl/Sinematic-Realism-v1 Tool description: Sinematic Realism v1 Tool cover: https://cdn.wiro.ai/uploads/models/Bad_Girl-Sinematic-Realism-v1-cover.jpeg Tool categories: - model - text-to-image - checkpoint-file - lora-flux - bf16 - persistent Tool tags: - style Run Task Endpoint (POST): https://api.wiro.ai/v1/Run/Bad_Girl/Sinematic-Realism-v1 Get Task Detail Endpoint (POST): https://api.wiro.ai/v1/Task/Detail ## Tool Inputs: - name: prompt label: prompt help: prompt-help type: textarea default: ultra-detailed portrait of a woman in noir lighting,slicked back hair, red lips, wearing a black leather jacket, standing in the rain, neon lights reflecting on her face, cinematic shadows, 85mm photography, sinematic realism - name: samples label: numberofoutputs help: numberofoutputs-help type: number default: 1 - name: steps label: inferencesteps help: inferencesteps-help type: number default: 20 - name: scale label: guidancescale help: guidancescale-help type: float default: 1 - name: seed label: seed help: seed-help type: text default: 2263255606 - name: width label: width help: width-help type: number default: 1024 - name: height label: height help: height-help type: number default: 1024 ## Tool Parameter Inspires: - steps: 20 - scale: 1 - prompt: ultra-detailed portrait of a woman in noir lighting,slicked back hair, red lips, wearing a black leather jacket, standing in the rain, neon lights reflecting on her face, cinematic shadows, 85mm photography, sinematic realism - seed: 2263255606 - steps: 20 - scale: 1 - prompt: ultra-detailed portrait of a woman in noir lighting,slicked back hair, red lips, wearing a black leather jacket, standing in the rain, neon lights reflecting on her face, cinematic shadows, 85mm photography, sinematic realism - seed: 3094315433 - steps: 20 - scale: 1 - prompt: a woman with blue eyes and a star in her hair is staring at the camera with a blue light shining on her face,Anna Dittmann, highly detailed digital painting, an ultrafine detailed painting, fantasy art - seed: 543545823 - steps: 20 - scale: 1 - prompt: moody portrait of a rugged man with tousled hair,wearing a vintage trench coat, city skyline in the background at sunset, film grain, shallow depth of field, soft rim lighting, semi-realistic style, sinematic realism - seed: 13399406 - steps: 35 - scale: 1 - prompt: 1girl,mythic warrior-seeress, pale skin, dark feathers braided into hair, warpaint on face, arcane sigils on skin, sharp ancient eyes, raven perched on left shoulder, whispering, swarm of ravens in background, intense gaze, tribal markings, dark Celtic portrait, storm-lit atmosphere, cinematic moody light, high-detail texture, hyper-detailed feathers, hyper-detailed sigils, fantasy warrior, mystic expression, front-facing, soft focus, ultra detailed, visually powerful, mythic presence - seed: 2815303670 - steps: 30 - scale: 1 - prompt: Fortune teller looks directly into the camera,eyes glow softly, camera zooms in slowly, floating light particles rise around her, her lips almost move as if whispering, spiritual energy fills the space - seed: 1696716526 - steps: 30 - scale: 1 - prompt: Hyper-realistic macro shot of tiny construction workers crafting an enormous pizza. Some are spreading tomato sauce with paint rollers,while others are placing pepperoni slices using cranes. The bubbly, cheesy surface becomes a warm, delicious construction zone, creating a detailed and whimsical food-themed miniature world. - seed: 280019532 - steps: 30 - scale: 1 - prompt: A cinematic photo of a brunette fashion model wearing a magical lilal flower petal-made dress,as she strides confidently through a desolate, dark post-apocalyptic cityscape, capturing the stark juxtaposition of beauty and decay, with the model's flawless skin glowing like a beacon of hope amidst the ravaged urban landscape. photographed with a shallow depth of field to blur the bleak surroundings, emphasizing her striking, rebellious pose. full body, golden hour. - seed: 363180267 - steps: 30 - scale: 1 - prompt: dolphin wearing a streamlined faceless flight helmet with holographic visor,floating in zero gravity,space background with planets and stars, science fiction art, smooth tech suit - seed: 3646590591 - steps: 30 - scale: 1 - prompt: mysterious figure standing on a red carpet in a designer tuxedo and a sleek,expressionless helmet,surrounded by flashing lights and paparazzi blur, cinematic fashion glamour, full-body editorial framing - seed: 2687431781 - steps: 32 - scale: 4.5 - prompt: ultra-detailed image of two stylish adult women sitting together in a retro 1990s-style pizza parlor with bold red booths,checkered floors, neon soda signs, and warm ambient lighting. On the left, a pale-skinned goth BBW woman with long jet-black hair and blunt bangs reclines in a red vinyl booth, wearing a fitted black crop top under an open leather jacket and a short pleated skirt. Her massive natural breasts (massive breasts:1.5), thick thighs, and curvy frame fill the seat comfortably. A velvet choker encircles her neck, and her dark eye makeup and soft smirk give her a quietly amused vibe.Across from her sits a sleek olive-skinned woman with slicked-back dark hair, wearing a cropped leather jacket and vintage-wash jeans. They’re both leaning forward slightly, laughing, as they pull apart a mozzarella stick — the hot cheese stretching comically far between them. The plate is stacked with more golden, crispy sticks, and a side of marinara sauce. The table has a red plastic basket of crinkle fries, retro fountain drinks with striped straws, and a folded paper pizza menu. Neon reflections bounce off their jackets. The moment is warm, nostalgic, slightly messy, and filled with genuine energy, captured in soft shallow depth and 85mm portrait compression. - seed: 1640190102 ## Integration Header Prepare ```bash # Sign up Wiro dashboard and create project export YOUR_API_KEY="{{useSelectedProjectAPIKey}}"; export YOUR_API_SECRET="XXXXXXXXX"; # unix time or any random integer value export NONCE=$(date +%s); # hmac-SHA256 (YOUR_API_SECRET+Nonce) with YOUR_API_KEY export SIGNATURE="$(echo -n "${YOUR_API_SECRET}${NONCE}" | openssl dgst -sha256 -hmac "${YOUR_API_KEY}")"; ``` ## Run Command - Make HTTP Post Request ```bash curl -X POST "https://api.wiro.ai/v1/Run/Bad_Girl/Sinematic-Realism-v1" -H "Content-Type: multipart/form-data" -H "x-api-key: ${YOUR_API_KEY}" -H "x-nonce: ${NONCE}" -H "x-signature: ${SIGNATURE}" -d '{ "prompt": "ultra-detailed portrait of a woman in noir lighting,slicked back hair, red lips, wearing a black leather jacket, standing in the rain, neon lights reflecting on her face, cinematic shadows, 85mm photography, sinematic realism", "samples": 1, "steps": 20, "scale": "1", "seed": "2263255606", "width": 1024, "height": 1024, "callbackUrl": "You can provide a callback URL; Wiro will send a POST request to it when the task is completed." }'; ``` ## Run Command - Response ```json { "errors": [], "taskid": "2221", "socketaccesstoken": "eDcCm5yyUfIvMFspTwww49OUfgXkQt", "result": true } ``` ## Get Task Detail - Make HTTP Post Request ```bash curl -X POST "https://api.wiro.ai/v1/Task/Detail" -H "Content-Type: multipart/form-data" -H "x-api-key: ${YOUR_API_KEY}" -H "x-nonce: ${NONCE}" -H "x-signature: ${SIGNATURE}" -d '{ "tasktoken": 'eDcCm5yyUfIvMFspTwww49OUfgXkQt', }'; ``` ## Get Task Detail - Response ```json { "total": "1", "errors": [], "tasklist": [ { "id": "2221", "uuid": "15bce51f-442f-4f44-a71d-13c6374a62bd", "socketaccesstoken": "eDcCm5yyUfIvMFspTwww49OUfgXkQt", "parameters": {}, "debugoutput": "", "debugerror": "", "starttime": "1734513809", "endtime": "1734513813", "elapsedseconds": "6.0000", "status": "task_postprocess_end", "createtime": "1734513807", "canceltime": "0", "assigntime": "1734513807", "accepttime": "1734513807", "preprocessstarttime": "1734513807", "preprocessendtime": "1734513807", "postprocessstarttime": "1734513813", "postprocessendtime": "1734513814", "outputs": [ { "id": "6bc392c93856dfce3a7d1b4261e15af3", "name": "0.png", "contenttype": "image/png", "parentid": "6c1833f39da71e6175bf292b18779baf", "uuid": "15bce51f-442f-4f44-a71d-13c6374a62bd", "size": "202472", "addedtime": "1734513812", "modifiedtime": "1734513812", "accesskey": "dFKlMApaSgMeHKsJyaDeKrefcHahUK", "url": "https://cdn1.wiro.ai/6a6af820-c5050aee-40bd7b83-a2e186c6-7f61f7da-3894e49c-fc0eeb66-9b500fe2/0.png" } ], "size": "202472" } ], "result": true } ``` ## Task Status Information This section defines the possible task status values returned by the API when polling for task completion. ### Completed Task Statuses (Polling can stop) These indicate that the task has reached a terminal state — either success or failure. Once any of these is received, polling should stop. - task_postprocess_end : Task completed successfully and post-processing is done. - task_cancel : Task was cancelled by the user or system. ### Running Task Statuses (Continue polling) These statuses indicate that the task is still in progress. Polling should continue if one of these is returned. - task_queue : Task is waiting in the queue. - task_accept : Task has been accepted for processing. - task_assign : Task is being assigned to a worker. - task_preprocess_start : Preprocessing is starting. - task_preprocess_end : Preprocessing is complete. - task_start : Task execution has started. - task_output : Output is being generated.