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

Get the list of crawled websites

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

Last updated