> 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/status-check-api.md).

# Status Check API

## Get crawl status

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

### Header

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

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

#### Path Parameters

| Name                                       | Type   | Description                                                                                          |
| ------------------------------------------ | ------ | ---------------------------------------------------------------------------------------------------- |
| case\_id<mark style="color:red;">\*</mark> | String | You need to provide the website Case ID that you already received in the Initiate Crawl Response API |

#### Success Response

```json
{
    "success": true,
    "code": 200,
    "message": "Results are",
    "data": {
        "caseId": "gKXvLK9Y7gPAmyYCxGDn3p",
        "websiteName": "tutelar.io.",
        "percentage": 50,
        "status": "in_progress",
        "startTime": "2024-04-18T09:45:10.744Z",
        "totalProcessTime": "00:03:14:167",
        "score": 30,
        "risk_type": "low"
    }
}
```

**Failure response**

```json
{
    "success": false,
    "code": 300,
    "message": "Please provide case id",
    "data": {}
}
```

**Record not found**&#x20;

```json
{
    "success": false,
    "code": 300,
    "message": "No data found",
    "data": {}
}
```
