# /api/item/list

**`GET`** Get items that match the filter condition.

| Parameter | Description                                                                                                              |
| --------- | ------------------------------------------------------------------------------------------------------------------------ |
| limit     | The number of items to be displayed. the default number is `200`                                                         |
| offset    | Offset a collection of results from the api. Start with `0`.                                                             |
| orderBy   | The sorting order.`CREATEDATE` , `FILESIZE` , `NAME` , `RESOLUTION` , add a minus sign for descending order: `-FILESIZE` |
| keyword   | Filter by the keyword                                                                                                    |
| ext       | Filter by the extension type, e.g.: `jpg` ,  `png`                                                                       |
| tags      | Filter by tags. Use `,` to divide different tags. E.g.: `Design, Poster`                                                 |
| folders   | Filter by Folders.  Use `,` to divide folder IDs. E.g.: `KAY6NTU6UYI5Q,KBJ8Z60O88VMG`                                    |

**Sample Code:**

```javascript
var requestOptions = {
  method: 'GET',
  redirect: 'follow'
};

fetch("http://localhost:41595/api/item/list?orderBy=-RESOLUTION&limit=10&ext=svg&name=character&folders=KB90R2VNPHH3V&tags=test,test2", requestOptions)
  .then(response => response.json())
  .then(result => console.log(result))
  .catch(error => console.log('error', error));
```

**Results Returned:**

```javascript
{
    "status": "success",
    "data": [
        {
            "id": "KB91GNOPDDVTH",
            "name": "running-man",
            "size": 36382,
            "ext": "svg",
            "tags": [],
            "folders": [
                "KB90QZMU641LI"
            ],
            "isDeleted": false,
            "url": "https://cn.eagle.cool/extensions",
            "annotation": "",
            "modificationTime": 1591774540009,
            "height": 166,
            "width": 203,
            "lastModified": 1591774540171,
            "palettes": [
                {
                    "color": [
                        236,
                        240,
                        242
                    ],
                    "ratio": 44
                },
                {
                    "color": [
                        66,
                        141,
                        250
                    ],
                    "ratio": 30
                },
                {
                    "color": [
                        32,
                        40,
                        72
                    ],
                    "ratio": 9
                },
                {
                    "color": [
                        233,
                        167,
                        20
                    ],
                    "ratio": 5
                },
                {
                    "color": [
                        84,
                        76,
                        132
                    ],
                    "ratio": 4.65
                },
                {
                    "color": [
                        134,
                        188,
                        244
                    ],
                    "ratio": 3.1
                },
                {
                    "color": [
                        245,
                        208,
                        159
                    ],
                    "ratio": 1.11
                },
                {
                    "color": [
                        36,
                        204,
                        252
                    ],
                    "ratio": 1.11
                },
                {
                    "color": [
                        20,
                        126,
                        158
                    ],
                    "ratio": 0.66
                }
            ]
        },
        {
            "id": "KB91IN6THODMA",
            "name": "running-man",
            "size": 36382,
            "ext": "svg",
            "tags": [],
            "folders": [
                "KB90R2VNPHH3V"
            ],
            "isDeleted": false,
            "url": "https://cn.eagle.cool/extensions",
            "annotation": "",
            "modificationTime": 1591774632677,
            "height": 166,
            "width": 203,
            "lastModified": 1591774632941,
            "palettes": [
                {
                    "color": [
                        236,
                        240,
                        242
                    ],
                    "ratio": 44
                },
                {
                    "color": [
                        66,
                        141,
                        250
                    ],
                    "ratio": 30
                },
                {
                    "color": [
                        32,
                        40,
                        72
                    ],
                    "ratio": 9
                },
                {
                    "color": [
                        233,
                        167,
                        20
                    ],
                    "ratio": 5
                },
                {
                    "color": [
                        84,
                        76,
                        132
                    ],
                    "ratio": 4.65
                },
                {
                    "color": [
                        134,
                        188,
                        244
                    ],
                    "ratio": 3.1
                },
                {
                    "color": [
                        245,
                        208,
                        159
                    ],
                    "ratio": 1.11
                },
                {
                    "color": [
                        36,
                        204,
                        252
                    ],
                    "ratio": 1.11
                },
                {
                    "color": [
                        20,
                        126,
                        158
                    ],
                    "ratio": 0.66
                }
            ]
        },
        {
            "id": "KB91IUWS7VJVF",
            "name": "running-man",
            "size": 36382,
            "ext": "svg",
            "tags": [],
            "folders": [
                "KB90QZMU641LI"
            ],
            "isDeleted": false,
            "url": "https://cn.eagle.cool/extensions",
            "annotation": "",
            "modificationTime": 1591774642684,
            "height": 166,
            "width": 203,
            "lastModified": 1591774643006,
            "palettes": [
                {
                    "color": [
                        236,
                        240,
                        242
                    ],
                    "ratio": 44
                },
                {
                    "color": [
                        66,
                        141,
                        250
                    ],
                    "ratio": 30
                },
                {
                    "color": [
                        32,
                        40,
                        72
                    ],
                    "ratio": 9
                },
                {
                    "color": [
                        233,
                        167,
                        20
                    ],
                    "ratio": 5
                },
                {
                    "color": [
                        84,
                        76,
                        132
                    ],
                    "ratio": 4.65
                },
                {
                    "color": [
                        134,
                        188,
                        244
                    ],
                    "ratio": 3.1
                },
                {
                    "color": [
                        245,
                        208,
                        159
                    ],
                    "ratio": 1.11
                },
                {
                    "color": [
                        36,
                        204,
                        252
                    ],
                    "ratio": 1.11
                },
                {
                    "color": [
                        20,
                        126,
                        158
                    ],
                    "ratio": 0.66
                }
            ]
        }
    ]
}
```


---

# 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://api.eagle.cool/item/list.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.
