> 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/tutelar-api-document-v2/web-crawling/list-api.md).

# List API

## Get the list of crawled websites

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

### Header

| Name          | Value                     |
| ------------- | ------------------------- |
| Content-Type  | `application/json`        |
| Authorization | `Bearer eyJhbGciOiJ.....` |

{% 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": "ippopay.com"
            },
            {
                "status": "in_progress",
                "percentage": 50,
                "website": "tutelar.io"
            }
        ]
    }
}
```
