Status Check API
The Status Check API allows users to retrieve the status of a website's crawling process by querying with a caseId. It returns details like website name, crawl progress, status and other metrics
Get crawl status
GET
https://secctrl.tutelar.io/api/v1/web-crawling/get-status?case_id=<caseId>
Path Parameters
Name
Type
Description
case_id*
gKXvLK9Y7gPAmyYCxGDn3p
You need to provide the website Case ID that you already received in the Initiate Crawl Response API
Success Response
{
"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
{
"success": false,
"code": 300,
"message": "Please provide case id",
"data": {}
}
Record not found
{
"success": false,
"code": 300,
"message": "No data found",
"data": {}
}
Last updated