> For the complete documentation index, see [llms.txt](https://docs.tutelar.io/tutelar-api-document/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tutelar.io/tutelar-api-document/web-crawling/list-api.md).

# List API

## Get the list of crawled websites

<mark style="color:blue;">`GET`</mark> `https://secctrl.tutelar.io/api/v1/web-crawling/get-list`

{% tabs %}
{% tab title="401: Unauthorized " %}
{ "message": "Invalid authentication credentials" }
{% endtab %}
{% endtabs %}

**Success Response**

```json
{
    "success": true,
    "code": 200,
    "message": "Lists are",
    "data": {
        "total": 2,
        "data": [
            {
                "status": "completed",
                "percentage": 100,
                "website": "xxxxxxx.com"
            },
            {
                "status": "in_progress",
                "percentage": 50,
                "website": "xxxxxxx.in"
            }
        ]
    }
}
```
