---
title: Anything models
---

# Anything models
POST *https://api.turing.sh/image/anything*

## Parameters


- **prompt**
  - Type: string
  - Required: true
  - Description: Prompt to generate the image

- **steps**
  - Type: number
  - Required: false
  - Default: 100

- **number**
  - Type: number
  - Required: false
  - Default: 1

- **negative_prompt**
  - Type: string
  - Required: false
  - Default: disfigured mouth, disfigured teeth, half head, half face, blury, side looking, old, wrinkle, child, no face, pencil, full body, sharp, far away, overlapping, duplication, nude, disfigured, kitsch, oversaturated, grain, low-res, Deformed, blurry, bad anatomy, poorly drawn face, mutation, mutated, extra limb, ugly, poorly drawn hands, missing limb, blurry, floating limbs, disconnected limbs, malformed hands, blur, out of focus, long body, disgusting, poorly drawn, childish, mutilated, mangled, surreal, out of frame, duplicate, 2 faces

- **guidance_scale**
  - Type: number
  - Required: false
  - Default: 4

- **width**
  - Type: number
  - Required: false
  - Default: 512

- **height**
  - Type: number
  - Required: false
  - Default: 512

- **cfg_scale**
  - Type: number
  - Required: false
  - Default: 4

- **stream**
  - Type: boolean
  - Required: false
  - Default: true

## Response

<Error>Response not defined yet</Error>


## Examples

<CodeGroup title="Anything models example">
  ```typescript
  import axios from "axios";
  (async () => {
    let response = await axios({
      method: "post",
      url: 'https://api.turing.sh/image/anything',
      headers: {
        "Content-Type": "application/json",
        Authorization: "Bearer YOUR_API_KEY",
        "x-captcha-token": "Captcha key"
      },
      data: {
  "prompt": "string",
  "steps": 100,
  "number": 1,
  "negative_prompt": "disfigured mouth, disfigured teeth, half head, half face, blury, side looking, old, wrinkle, child, no face, pencil, full body, sharp, far away, overlapping, duplication, nude, disfigured, kitsch, oversaturated, grain, low-res, Deformed, blurry, bad anatomy, poorly drawn face, mutation, mutated, extra limb, ugly, poorly drawn hands, missing limb, blurry, floating limbs, disconnected limbs, malformed hands, blur, out of focus, long body, disgusting, poorly drawn, childish, mutilated, mangled, surreal, out of frame, duplicate, 2 faces",
  "guidance_scale": 4,
  "width": 512,
  "height": 512,
  "cfg_scale": 4,
  "stream": true
},
    })
  })();
  ```
  ```python
  import requests
  import json
  response = requests.post(
    "https://api.turing.sh/image/anything",
    headers={
      "Content-Type": "application/json",
      "Authorization": "Bearer YOUR_API_KEY",
      "x-captcha-token": "Captcha key"
    },
    data=json.dumps({
  "prompt": "string",
  "steps": 100,
  "number": 1,
  "negative_prompt": "disfigured mouth, disfigured teeth, half head, half face, blury, side looking, old, wrinkle, child, no face, pencil, full body, sharp, far away, overlapping, duplication, nude, disfigured, kitsch, oversaturated, grain, low-res, Deformed, blurry, bad anatomy, poorly drawn face, mutation, mutated, extra limb, ugly, poorly drawn hands, missing limb, blurry, floating limbs, disconnected limbs, malformed hands, blur, out of focus, long body, disgusting, poorly drawn, childish, mutilated, mangled, surreal, out of frame, duplicate, 2 faces",
  "guidance_scale": 4,
  "width": 512,
  "height": 512,
  "cfg_scale": 4,
  "stream": true
}),
  )
  ```
</CodeGroup>