# 3. List status

### **Request**

<table><thead><tr><th width="249">Method</th><th>URL</th></tr></thead><tbody><tr><td>GET</td><td>api_url/get-list-status</td></tr></tbody></table>

### **Example Request**

<table><thead><tr><th width="251">Method</th><th>URL</th></tr></thead><tbody><tr><td>GET</td><td><a href="http://127.0.0.1:5555/get-list-status">http://127.0.0.1:5555/get-list-status</a></td></tr></tbody></table>

### **Example Response**

{% code lineNumbers="true" %}

```json
[
    {
        "id": 58,
        "name": "12345",
        "color": "btn-outline-purple"
    },
    {
        "id": 59,
        "name": "hahaha",
        "color": "btn-outline-warning"
    },
    {
        "id": 65,
        "name": "red",
        "color": "btn-outline-secondary"
    },
    {
        "id": 70,
        "name": "blue",
        "color": "btn-outline-primary"
    },
    {
        "id": 71,
        "name": "green",
        "color": "btn-outline-primary"
    }
]

```

{% endcode %}
