# Toon Me API

### About

With its advanced algorithms and cutting-edge technology, the Toonme API can help businesses and individuals add a touch of creativity and playfulness to their digital content effortlessly.

Introducing the Toonme API, a powerful image-processing tool that transforms your photos into cartoon-style illustrations in seconds! With our API, you can easily integrate the Toonme technology into your own software, app, or website and offer your users a fun and unique way to enhance their photos.

Our state-of-the-art algorithm uses advanced machine learning techniques to analyze and identify the key features of your images and then applies a range of cartoon effects to create stunning illustrations that are sure to impress. From simple line drawings to full-color cartoons, the Toonme API offers a wide range of styles and effects to choose from, giving your users the flexibility to create the perfect look for their images.

Our API is incredibly easy to use, with simple and intuitive methods that allow you to quickly integrate our technology into your existing software. Whether you’re building a photo editing app, a social media platform, or a website that allows users to upload and share images, the Toonme API is the perfect tool to add a touch of creativity and fun.

**Some of the key features of the Toonme API include:**

* Fast and reliable image processing
* A wide range of cartoon styles and effects to choose from
* Simple and intuitive API methods for easy integration
* Scalable and flexible architecture that can handle large volumes of requests
* Robust error handling and support for a variety of image formats
* With the Toonme API, you can give your users a powerful and fun tool to enhance their photos and express their creativity. So why wait? Sign up today and start exploring the possibilities of the Toonme API!

### Curl Requests and Responses <a href="#api-documentation" id="api-documentation"></a>

Process the image

{% tabs %}
{% tab title="Curl" %}

```bash
curl -X 'POST' \
  'https://api.magicapi.dev/api/v1/toonme-api/toonify/toonme/v1/' \
  -H 'accept: application/json' \
  -H 'x-magicapi-key: API_KEY' \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -d 'id=EFFECT_ID&image_url=IMAGE_URL'
```

{% endtab %}

{% tab title="Python" %}

```python
import requests

headers = {
    'accept': 'application/json',
    'x-magicapi-key': 'API_KEY',
    'Content-Type': 'application/x-www-form-urlencoded',
}

data = {
    'id': 'EFFECT_ID',
    'image_url': 'IMAGE_URL',
}

response = requests.post('https://api.magicapi.dev/api/v1/toonme-api/toonify/toonme/v1/', headers=headers, data=data)
```

{% endtab %}

{% tab title="PHP" %}

```php
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.magicapi.dev/api/v1/toonme-api/toonify/toonme/v1/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'accept: application/json',
    'x-magicapi-key: API_KEY',
    'Content-Type: application/x-www-form-urlencoded',
]);
curl_setopt($ch, CURLOPT_POSTFIELDS, 'id=EFFECT_ID&image_url=IMAGE_URL');

$response = curl_exec($ch);

curl_close($ch);
```

{% endtab %}

{% tab title="NodeJs" %}

```javascript
import axios from 'axios';

const response = await axios.post(
  'https://api.magicapi.dev/api/v1/toonme-api/toonify/toonme/v1/',
  new URLSearchParams({
    'id': 'EFFECT_ID',
    'image_url': 'IMAGE_URL'
  }),
  {
    headers: {
      'accept': 'application/json',
      'x-magicapi-key': 'API_KEY'
    }
  }
);
```

{% endtab %}

{% tab title="Javascript" %}

```javascript
fetch('https://api.magicapi.dev/api/v1/toonme-api/toonify/toonme/v1/', {
  method: 'POST',
  headers: {
    'accept': 'application/json',
    'x-magicapi-key': 'API_KEY'
  },
  body: new URLSearchParams({
    'id': 'EFFECT_ID',
    'image_url': 'IMAGE_URL'
  })
});
```

{% endtab %}
{% endtabs %}

Response

```json
{
  "image_process_response": {
    "request_id": "81d8eafc-05ad-4af8-b511-c9709c00748c",
    "status": "OK",
    "description": null,
    "err_code": "0"
  }
}
```

**Get Result**

{% tabs %}
{% tab title="Curl" %}

```bash
curl -X 'POST' \
  'https://api.magicapi.dev/api/v1/toonme-api/toonify/toonme/v1/result/' \
  -H 'accept: application/json' \
  -H 'x-magicapi-key: cltfo5s0b0001l308yrlcifh9' \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -d 'request_id=5d5a7286-7c81-4c41-9899-094c3f7af35a'
```

{% endtab %}

{% tab title="Python" %}

```python
import requests

headers = {
    'accept': 'application/json',
    'x-magicapi-key': 'cltfo5s0b0001l308yrlcifh9',
    'Content-Type': 'application/x-www-form-urlencoded',
}

data = {
    'request_id': '5d5a7286-7c81-4c41-9899-094c3f7af35a',
}

response = requests.post('https://api.magicapi.dev/api/v1/toonme-api/toonify/toonme/v1/result/', headers=headers, data=data)
```

{% endtab %}

{% tab title="PHP" %}

```php
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.magicapi.dev/api/v1/toonme-api/toonify/toonme/v1/result/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'accept: application/json',
    'x-magicapi-key: cltfo5s0b0001l308yrlcifh9',
    'Content-Type: application/x-www-form-urlencoded',
]);
curl_setopt($ch, CURLOPT_POSTFIELDS, 'request_id=5d5a7286-7c81-4c41-9899-094c3f7af35a');

$response = curl_exec($ch);

curl_close($ch);
```

{% endtab %}

{% tab title="NodeJs" %}

```javascript
import axios from 'axios';

const response = await axios.post(
  'https://api.magicapi.dev/api/v1/toonme-api/toonify/toonme/v1/result/',
  new URLSearchParams({
    'request_id': '5d5a7286-7c81-4c41-9899-094c3f7af35a'
  }),
  {
    headers: {
      'accept': 'application/json',
      'x-magicapi-key': 'cltfo5s0b0001l308yrlcifh9'
    }
  }
);
```

{% endtab %}

{% tab title="Javascript" %}

```javascript
fetch('https://api.magicapi.dev/api/v1/toonme-api/toonify/toonme/v1/result/', {
  method: 'POST',
  headers: {
    'accept': 'application/json',
    'x-magicapi-key': 'cltfo5s0b0001l308yrlcifh9'
  },
  body: new URLSearchParams({
    'request_id': '5d5a7286-7c81-4c41-9899-094c3f7af35a'
  })
});
```

{% endtab %}
{% endtabs %}

Response

```json
{
  "image_process_response": {
    "request_id": "5d5a7286-7c81-4c41-9899-094c3f7af35a",
    "status": "OK",
    "duration": "2.585622667s",
    "total_duration": "2.606477093s",
    "result_url": "http://worker-images-8.ws.pho.to/i1/9D87C39C-E9AF-11EE-8875-122AD1B8A069.jpg",
    "masks": {
      "mask": {
        "@index": "1",
        "@name": "body",
        "#text": "http://worker-images-5.ws.pho.to/i2/4771c8fd24621d44a586a0da73284ad51e8c0607_result.png"
      }
    },
    "answers": null
  }
}
```

### Available Styles

You can choose any style by passing "id" in the toonify request.

|                                    Image                                   | Filter Id |
| :------------------------------------------------------------------------: | :-------: |
|        ![Image](http://plassets.ws.pho.to/e/6472/result_square.jpeg)       |    6472   |
|        ![Image](http://plassets.ws.pho.to/e/4511/result_square.gif)        |    4511   |
|        ![Image](https://plassets.ws.pho.to/e/6611/result_square.jpg)       |    6611   |
|        ![Image](https://plassets.ws.pho.to/e/3690/result_square.jpg)       |    3690   |
|        ![Image](https://plassets.ws.pho.to/e/6632/result_square.jpg)       |    6632   |
|        ![Image](https://plassets.ws.pho.to/e/2275/result_square.jpg)       |    2275   |
|        ![Image](https://plassets.ws.pho.to/e/7088/result_square.jpg)       |    7088   |
|        ![Image](https://plassets.ws.pho.to/e/6032/result_square.jpg)       |    6032   |
|        ![Image](https://plassets.ws.pho.to/e/2257/result_square.gif)       |    2257   |
|        ![Image](https://plassets.ws.pho.to/e/3858/result_square.jpg)       |    3858   |
|        ![Image](https://plassets.ws.pho.to/e/5076/result_square.jpg)       |    5076   |
|        ![Image](https://plassets.ws.pho.to/e/4652/result_square.jpg)       |    4652   |
|        ![Image](https://plassets.ws.pho.to/e/2218/result_square.jpg)       |    2218   |
|       ![Image](https://plassets.ws.pho.to/e/3086/result_square1.jpg)       |    3086   |
|        ![Image](https://plassets.ws.pho.to/e/1715/result_square.gif)       |    1715   |
|        ![Image](https://plassets.ws.pho.to/e/2351/result_square.jpg)       |    2351   |
|  ![Image](https://plassets.ws.pho.to/e/5058/result_square_v1620923887.gif) |    5058   |
|        ![Image](https://plassets.ws.pho.to/e/2341/result_square.jpg)       |    2341   |
|        ![Image](https://plassets.ws.pho.to/e/2169/result_square.jpg)       |    2169   |
|        ![Image](https://plassets.ws.pho.to/e/2254/result_square.jpg)       |    2254   |
|        ![Image](https://plassets.ws.pho.to/e/2116/result_square.jpg)       |    2116   |
| ![Image](https://plassets.ws.pho.to/e/3616/result_square_v1590067327.jpeg) |    3616   |
|        ![Image](https://plassets.ws.pho.to/e/2260/result_square.jpg)       |    2260   |
|      ![Image](https://plassets.ws.pho.to/e/3694/result_square_v1.jpg)      |    3694   |
|        ![Image](https://plassets.ws.pho.to/e/2122/result_square.jpg)       |    2122   |
|        ![Image](https://plassets.ws.pho.to/e/1067/result_square.jpg)       |    1067   |
|        ![Image](https://plassets.ws.pho.to/e/950/result_square.jpg)        |    950    |
|        ![Image](https://plassets.ws.pho.to/e/2797/result_square.jpg)       |    2797   |
|        ![Image](https://plassets.ws.pho.to/e/1911/result_square.jpg)       |    1911   |
|        ![Image](https://plassets.ws.pho.to/e/1850/result_square.jpg)       |    1850   |
|        ![Image](https://plassets.ws.pho.to/e/1344/result_square.jpg)       |    1344   |
|        ![Image](https://plassets.ws.pho.to/e/782/result_square.jpg)        |    782    |
|       ![Image](https://plassets.ws.pho.to/e/1915/result_square1.jpg)       |    1915   |
|        ![Image](https://plassets.ws.pho.to/e/7004/result_square.jpg)       |    7004   |
|        ![Image](https://plassets.ws.pho.to/e/3757/result_square.jpg)       |    3757   |
|        ![Image](https://plassets.ws.pho.to/e/1826/result_square.jpg)       |    1826   |
|        ![Image](https://plassets.ws.pho.to/e/1106/result_square.jpg)       |    1106   |
|        ![Image](https://plassets.ws.pho.to/e/952/result_square.jpg)        |    952    |
|        ![Image](https://plassets.ws.pho.to/e/1061/result_square.jpg)       |    1061   |
|        ![Image](https://plassets.ws.pho.to/e/953/result_square.jpg)        |    953    |
|        ![Image](https://plassets.ws.pho.to/e/7007/result_square.jpg)       |    7007   |
|        ![Image](https://plassets.ws.pho.to/e/976/result_square.gif)        |    976    |
|        ![Image](https://plassets.ws.pho.to/e/1705/result_square.gif)       |    1705   |
|        ![Image](https://plassets.ws.pho.to/e/3804/result_square.jpg)       |    3804   |
|        ![Image](https://plassets.ws.pho.to/e/2961/result_square.jpg)       |    2961   |
|        ![Image](https://plassets.ws.pho.to/e/1060/result_square.jpg)       |    1060   |
|        ![Image](https://plassets.ws.pho.to/e/1097/result_square.jpg)       |    1097   |
|        ![Image](https://plassets.ws.pho.to/e/2344/result_square.jpg)       |    2344   |
|        ![Image](https://plassets.ws.pho.to/e/2349/result_square.jpg)       |    2349   |
|        ![Image](https://plassets.ws.pho.to/e/2354/result_square.jpg)       |    2354   |
|        ![Image](https://plassets.ws.pho.to/e/1693/result_square.gif)       |    1693   |
|        ![Image](https://plassets.ws.pho.to/e/1926/result_square.jpg)       |    1926   |
|        ![Image](https://plassets.ws.pho.to/e/1312/result_square.jpg)       |    1312   |
|        ![Image](https://plassets.ws.pho.to/e/1355/result_square.jpg)       |    1355   |
|  ![Image](https://plassets.ws.pho.to/e/1954/result_v1582902180_square.jpg) |    1954   |
|        ![Image](https://plassets.ws.pho.to/e/1828/result_square.jpg)       |    1828   |
|       ![Image](https://plassets.ws.pho.to/e/1511/result_square.jpeg)       |    1511   |
|        ![Image](https://plassets.ws.pho.to/e/2114/result_square.jpg)       |    2114   |
|       ![Image](https://plassets.ws.pho.to/e/1776/result_square.jpeg)       |    1776   |
|        ![Image](https://plassets.ws.pho.to/e/2105/result_square.jpg)       |    2105   |
|           ![Image](https://plassets.ws.pho.to/e/1942/result.jpg)           |    1942   |
|           ![Image](https://plassets.ws.pho.to/e/1840/result.jpeg)          |    1840   |
|        ![Image](https://plassets.ws.pho.to/e/1668/result_square.jpg)       |    1668   |
|        ![Image](https://plassets.ws.pho.to/e/949/result_square.jpg)        |    949    |
|        ![Image](https://plassets.ws.pho.to/e/986/result_square.jpg)        |    986    |
|        ![Image](https://plassets.ws.pho.to/e/1552/result_square.jpg)       |    1552   |
|        ![Image](https://plassets.ws.pho.to/e/956/result_square.jpg)        |    956    |
|         ![Image](https://plassets.ws.pho.to/e/1716/result_320.gif)         |    1716   |
|        ![Image](https://plassets.ws.pho.to/e/1847/result_square.jpg)       |    1847   |
|        ![Image](https://plassets.ws.pho.to/e/1854/result_square.jpg)       |    1854   |
|        ![Image](https://plassets.ws.pho.to/e/2182/result_square.jpg)       |    2182   |
|           ![Image](https://plassets.ws.pho.to/e/1798/result.jpeg)          |    1798   |
|        ![Image](https://plassets.ws.pho.to/e/1120/result_square.jpg)       |    1120   |
|         ![Image](https://plassets.ws.pho.to/e/1723/result_320.gif)         |    1723   |
|        ![Image](https://plassets.ws.pho.to/e/1445/result_square.jpg)       |    1445   |
|        ![Image](https://plassets.ws.pho.to/e/1193/result_square.jpg)       |    1193   |
|        ![Image](https://plassets.ws.pho.to/e/1096/result_square.jpg)       |    1096   |
|           ![Image](https://plassets.ws.pho.to/e/1958/result.jpg)           |    1958   |
|        ![Image](https://plassets.ws.pho.to/e/2179/result_square.jpg)       |    2179   |
|        ![Image](https://plassets.ws.pho.to/e/2241/result_square.jpg)       |    2241   |
|       ![Image](https://plassets.ws.pho.to/e/1673/result_square.jpeg)       |    1673   |
|        ![Image](https://plassets.ws.pho.to/e/2173/result_square.jpg)       |    2173   |
|        ![Image](https://plassets.ws.pho.to/e/1700/result_square.gif)       |    1700   |
|        ![Image](https://plassets.ws.pho.to/e/2120/result_square.jpg)       |    2120   |
|        ![Image](https://plassets.ws.pho.to/e/770/result_square.jpg)        |    770    |
|        ![Image](https://plassets.ws.pho.to/e/2246/result_square.jpg)       |    2246   |
|        ![Image](https://plassets.ws.pho.to/e/1772/result_square.jpg)       |    1772   |
|        ![Image](https://plassets.ws.pho.to/e/1036/result_square.jpg)       |    1036   |
|        ![Image](https://plassets.ws.pho.to/e/462/result_square.jpg)        |    462    |
|        ![Image](https://plassets.ws.pho.to/e/2301/result_square.jpg)       |    2301   |
|        ![Image](https://plassets.ws.pho.to/e/1055/result_square.jpg)       |    1055   |
|        ![Image](https://plassets.ws.pho.to/e/2231/result_square.jpg)       |    2231   |
|        ![Image](https://plassets.ws.pho.to/e/2310/result_square.jpg)       |    2310   |
|        ![Image](https://plassets.ws.pho.to/e/1054/result_square.jpg)       |    1054   |
|        ![Image](https://plassets.ws.pho.to/e/1276/result_square.jpg)       |    1276   |
|        ![Image](https://plassets.ws.pho.to/e/2202/result_square.jpg)       |    2202   |
|        ![Image](https://plassets.ws.pho.to/e/2221/result_square.jpg)       |    2221   |
|        ![Image](https://plassets.ws.pho.to/e/1059/result_square.jpg)       |    1059   |
|        ![Image](https://plassets.ws.pho.to/e/2277/result_square.jpg)       |    2277   |
|        ![Image](https://plassets.ws.pho.to/e/2174/result_square.jpg)       |    2174   |
|        ![Image](https://plassets.ws.pho.to/e/2230/result_square.jpg)       |    2230   |
|        ![Image](https://plassets.ws.pho.to/e/1862/result_square.jpg)       |    1862   |
|        ![Image](https://plassets.ws.pho.to/e/2274/result_square.jpg)       |    2274   |
|        ![Image](https://plassets.ws.pho.to/e/1068/result_square.jpg)       |    1068   |
|        ![Image](https://plassets.ws.pho.to/e/2248/result_square.jpg)       |    2248   |
|        ![Image](https://plassets.ws.pho.to/e/2556/result_square.jpg)       |    2556   |
|        ![Image](https://plassets.ws.pho.to/e/1136/result_square.jpg)       |    1136   |
|        ![Image](https://plassets.ws.pho.to/e/973/result_square.jpg)        |    973    |
|        ![Image](https://plassets.ws.pho.to/e/779/result_square.jpg)        |    779    |
|        ![Image](https://plassets.ws.pho.to/e/2684/result_square.jpg)       |    2684   |
|        ![Image](https://plassets.ws.pho.to/e/2237/result_square.jpg)       |    2237   |
|        ![Image](https://plassets.ws.pho.to/e/2352/result_square.jpg)       |    2352   |
|        ![Image](https://plassets.ws.pho.to/e/2667/result_square.jpg)       |    2667   |
|        ![Image](https://plassets.ws.pho.to/e/268/result_square.jpg)        |    268    |
|        ![Image](https://plassets.ws.pho.to/e/433/result_square.jpg)        |    433    |
|        ![Image](https://plassets.ws.pho.to/e/2176/result_square.jpg)       |    2176   |
|        ![Image](https://plassets.ws.pho.to/e/3017/result_square.jpg)       |    3017   |
|        ![Image](https://plassets.ws.pho.to/e/2887/result_square.jpg)       |    2887   |
|        ![Image](https://plassets.ws.pho.to/e/1555/result_square.jpg)       |    1555   |
|        ![Image](https://plassets.ws.pho.to/e/8216/result_square.jpg)       |    8216   |
|        ![Image](https://plassets.ws.pho.to/e/2157/result_square.jpg)       |    2157   |
|        ![Image](https://plassets.ws.pho.to/e/2345/result_square.jpg)       |    2345   |
|           ![Image](https://plassets.ws.pho.to/e/2603/result.jpg)           |    2603   |
|        ![Image](https://plassets.ws.pho.to/e/1027/result_square.jpg)       |    1027   |
|        ![Image](https://plassets.ws.pho.to/e/3102/result_square.jpg)       |    3102   |
|        ![Image](https://plassets.ws.pho.to/e/2245/result_square.jpg)       |    2245   |
|           ![Image](https://plassets.ws.pho.to/e/1829/result.jpeg)          |    1829   |
|        ![Image](https://plassets.ws.pho.to/e/1062/result_square.jpg)       |    1062   |
|        ![Image](https://plassets.ws.pho.to/e/2570/result_square.jpg)       |    2570   |
|        ![Image](https://plassets.ws.pho.to/e/3113/result_square.jpg)       |    3113   |
|        ![Image](https://plassets.ws.pho.to/e/1101/result_square.jpg)       |    1101   |
|        ![Image](https://plassets.ws.pho.to/e/2589/result_square.jpg)       |    2589   |
|        ![Image](https://plassets.ws.pho.to/e/1787/result_square.jpg)       |    1787   |
|        ![Image](https://plassets.ws.pho.to/e/2962/result_square.jpg)       |    2962   |
|        ![Image](https://plassets.ws.pho.to/e/3122/result_square.gif)       |    3122   |
|        ![Image](https://plassets.ws.pho.to/e/3271/result_square.jpg)       |    3271   |
|        ![Image](https://plassets.ws.pho.to/e/2493/result_square.jpg)       |    2493   |
|        ![Image](https://plassets.ws.pho.to/e/2507/result_square.jpg)       |    2507   |
|        ![Image](https://plassets.ws.pho.to/e/2350/result_square.jpg)       |    2350   |
|        ![Image](https://plassets.ws.pho.to/e/3689/result_square.jpg)       |    3689   |
|        ![Image](https://plassets.ws.pho.to/e/2516/result_square.jpg)       |    2516   |
|        ![Image](https://plassets.ws.pho.to/e/3762/result_square.jpg)       |    3762   |
|        ![Image](https://plassets.ws.pho.to/e/2860/result_square.jpg)       |    2860   |
|        ![Image](https://plassets.ws.pho.to/e/3251/result_square.jpg)       |    3251   |
|        ![Image](https://plassets.ws.pho.to/e/2357/result_square.jpg)       |    2357   |
|        ![Image](https://plassets.ws.pho.to/e/3693/result_square.jpg)       |    3693   |
|        ![Image](https://plassets.ws.pho.to/e/1025/result_square.jpg)       |    1025   |
|        ![Image](https://plassets.ws.pho.to/e/2235/result_square.jpg)       |    2235   |
|        ![Image](https://plassets.ws.pho.to/e/4268/result_square.jpg)       |    4268   |
|          ![Image](https://plassets.ws.pho.to/e/607/result_320.gif)         |    607    |
|        ![Image](https://plassets.ws.pho.to/e/2228/result_square.jpg)       |    2228   |
|        ![Image](https://plassets.ws.pho.to/e/2289/result_square.jpg)       |    2289   |
|        ![Image](https://plassets.ws.pho.to/e/1695/result_square.gif)       |    1695   |
|        ![Image](https://plassets.ws.pho.to/e/1992/result_square.jpg)       |    1992   |
|        ![Image](https://plassets.ws.pho.to/e/951/result_square.jpg)        |    951    |
|        ![Image](https://plassets.ws.pho.to/e/3097/result_square.gif)       |    3097   |
|        ![Image](https://plassets.ws.pho.to/e/2671/result_square.jpg)       |    2671   |
|        ![Image](https://plassets.ws.pho.to/e/3177/result_square.jpg)       |    3177   |
|        ![Image](https://plassets.ws.pho.to/e/2806/result_square.jpg)       |    2806   |
|        ![Image](https://plassets.ws.pho.to/e/2348/result_square.jpg)       |    2348   |
|        ![Image](https://plassets.ws.pho.to/e/4080/result_square.jpg)       |    4080   |
|        ![Image](https://plassets.ws.pho.to/e/3663/result_square.jpg)       |    3663   |
|        ![Image](https://plassets.ws.pho.to/e/2494/result_square.jpg)       |    2494   |
|           ![Image](https://plassets.ws.pho.to/e/2542/result.jpeg)          |    2542   |
|       ![Image](https://plassets.ws.pho.to/e/3854/result_square.jpeg)       |    3854   |
|        ![Image](https://plassets.ws.pho.to/e/2859/result_square.jpg)       |    2859   |
|  ![Image](https://plassets.ws.pho.to/e/3735/result_square_v1594915890.jpg) |    3735   |
|        ![Image](https://plassets.ws.pho.to/e/1026/result_square.jpg)       |    1026   |
|        ![Image](https://plassets.ws.pho.to/e/1853/result_square.jpg)       |    1853   |
|        ![Image](https://plassets.ws.pho.to/e/3152/result_square.jpg)       |    3152   |
|       ![Image](https://plassets.ws.pho.to/e/3018/result_square1.jpg)       |    3018   |
|        ![Image](https://plassets.ws.pho.to/e/3718/result_square.jpg)       |    3718   |
|        ![Image](https://plassets.ws.pho.to/e/3699/result_square.jpg)       |    3699   |
|       ![Image](https://plassets.ws.pho.to/e/2573/result_square1.jpg)       |    2573   |
|        ![Image](https://plassets.ws.pho.to/e/2375/result_square.jpg)       |    2375   |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.api.market/api-product-docs/magicapi/toon-me-api.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
