Endpoint
GET https://hypeauditor.com/api/method/auditor.lists
Returns all lists in current account. Please, note that the default list “Recent searches” has ID=0
List Object
| Attributes | Type | |
|---|---|---|
| id | int | List ID | 
| name | string | List title | 
| count | int | Reports count in this list | 
| created | int | Date timestamp of creation | 
| updated | int | Date timestamp of last update | 
Response
{
    "result": [
        {
            "id": 0,
            "name": "Recent searches",
            "count": 63,
            "created": 1502009312,
            "updated": 1602857408
        },
        {
            "id": 45,
            "name": "My List",
            "count": 5,
            "created": 1534408950,
            "updated": 1562586879
        }
    ]
}