Model: Toon Babes: v1.0
Prompt:
1 cartoon girl, Photo, watercolor painting, Happy, Pixar disney, Pastel, Bright
Negative prompt:
BadDreamFastNegativeV2, UnrealisticDream, Asian-Less-Neg, bad-hands-5, (loli, petite, childlike, teen), cum, wet_pussy thicc, chubby, fat, disproportion_head, huge_boobs, (worst quality:2), (low quality:2), (normal quality:2), lowres, bad anatomy, bad hands, multiple limbs, extra limbs, deformed limbs, normal quality, ((monochrome)), ((grayscale)), (((bad_nipples))), (((bad_pussy))), (((corssed_eyes))), (((pussy))), bed-legs
Steps: 34
Cfg scale: 7.0
Width: 916
Height: 1216
Sampler name: Euler a
Denoising strength: Default
Image with seed 3060780398 by preset 'Toons Girl'
ID: 7159972489811963905

Seed: 3060780398

Added: 2024-02-04 18:14:27 UTC

View

Copy this Preset

Image with seed 87305169 by preset 'Toons Girl'
ID: 7149191683566264321

Seed: 87305169

Added: 2024-01-06 00:15:22 UTC

View

Copy this Preset


            

              body = {"preset_name": "Toons Girl", "seed": None }
headers = {"Token": "<YOUR_API_KEY>"}

# ------------------------------------------------------------------------------------

preset_name = body.get("preset_name")

import time
import requests

if not preset_name:
    print("Please, enter a 'preset_name' variable to start the generation process ;)")
    exit()

url = "https://stdiff.io/api/preset2image"
session = requests.Session()
response = session.post(url, json=body, headers=headers).json()
# {
#     "success": true,
#     "task_id": "7133745436839378945",
#     "preset_name": "preset-1",
#     "seed": null
# }
task_id = response.get("task_id")
if task_id:
    print(f"Request to generate AI image based on the preset `{preset_name}` "
          f"was created successfully. Task ID: `{task_id}`")
    new_response = {}
else:
    new_response = response

status = None
while not status == "GENERATED" and task_id:
    print("Getting latest image generating status from the server...")
    new_response = session.get(url, params={"task_id": task_id}, headers=headers).json()
    status = new_response.get("status")
    print(f"...status: {status}")
    if status == "ERROR" or not status:
        break
    time.sleep(5)

if status == "GENERATED":
    print(f"Yohoo! Image was successfully generated. You can download it from here:"
          f" {new_response.get('image_url')}")
else:
    print(f"Error occurred when trying to generate image. Response: {new_response}")

# {
#     "success": true,
#     "task_id": "7133745436839378945",
#     "status": "GENERATED",
#     "image_url": "https://stdiff.io/media/generated_images/preset-3_1163882438_9c716427b787f3202e708a572ef38f7d.png"
# }

        

            
curl https://stdiff.io/api/preset2image -H 'TOKEN: <YOUR_API_KEY>' -H 'Content-Type: application/json' -d '{"preset_name": "Toons Girl"}'

        

Postman and Swagger UI are available