Result API

The Results API delivers the crawling outcome of a website in JSON format, using a unique caseId to provide insights into the URL's performance and content extracted

Get crawl results

GET https://secctrl.tutelar.io/api/v1/web-crawling/get-crawl-results?case_id=<caseId>

{ "message": "Invalid authentication credentials" }

Query Parameters

NameTypeDescription

case_id*

/web-crawling/get-status?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": {
        "website": "tutelar.io",
        "website_link": "https://www.tutelar.io",
        "website_actual_url": "https://www.tutelar.io",
        "unique_id": "WEB0TUTE6FGOT",
        "from": "API",
        "merchant": {
            "id": "TUTMERCH001",
            "trade_name": "tutelar pvt ltd"
        },
        "caseId": "gKXvLK9Y7gPAmyYCxGDn3p",
        "status": "in_progress",
        "client": {
            "id": "TUTTUTE00038",
            "name": "Tutelar",
            "business_name": "tutelar pvt ltd"
        },
        .....
        .....
        .....
    }
 }       

Failure response

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

Record not found

{
    "success": true,
    "code": 200,
    "message": "Results are",
    "data": {}
}

Last updated