List API
The API lists crawling results for websites based on a client identifier, providing a summary of crawl status and completion percentage for each website associated with the client
Last updated
The API lists crawling results for websites based on a client identifier, providing a summary of crawl status and completion percentage for each website associated with the client
GET https://secctrl.tutelar.io/api/v1/web-crawling/get-list
{ "message": "Invalid authentication credentials" }
Success Response
{
"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"
}
]
}
}Last updated