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/v2/web-crawling/get-list
Content-Type
application/json
Authorization
Bearer eyJhbGciOiJ.....
{ "message": "Invalid authentication credentials" }
Success Response
{
"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"
}
]
}
}Last updated