Crawled Results
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>
Query Parameters
Name
Type
Description
case_id*
String
You need to provide the website Case ID that you already received in the Initiate Crawl Response API
Success response
{
"success": true,
"code": "4999",
"message": "Results are",
"data": {
"website": "tutelar.io",
"website_link": "https://tutelar.io",
"website_actual_url": "https://tutelar.io/",
"ucic": "",
"sourceName": "",
"from": "STAND-ALONE",
"merchant": {
"trade_name": "Tutealr"
},
"caseId": "uwFwLU4wqAeBCptM7M8p6e",
"status": "in_progress",
"client": {
"id": "TUTWEBK00341",
"name": "Siva",
"business_name": "Web Kot Crawler",
"timezone": "Asia/Kolkata",
"billing_type": "prepaid"
},
"level": "basic",
"mode": "live",
"percentage": 19,
"source_from": "web",
"risk_score": 0,
"risk_status": "pending",
"record_type": "new",
"crawling_type": "regular",
"created_by": {
"id": "TUTWEBK00341",
"name": "Siva"
},
"createdAt": "2025-08-13T10:14:31.745Z",
"start_time": "2025-08-13T10:14:31.906Z",
"domain_info": {
"success": true,
"process_time": 21,
"data": {
"domain": "tutelar.io",
"creation_date": "2022-01-04T13:44:29Z",
"domain_age": "3 years 7 months 7 days",
"expiration_date": "2027-01-04T13:44:29Z",
"is_valid": true,
"registrar": "http://www.godaddy.com/domains/search.aspx?ci=8990",
"success": true,
"data_from": "API"
}
},
"ip_address": {
"success": true,
"process_time": 4,
"data": {
"address": "3.111.22.84",
"family": 4
}
},
"working_condition": {
"success": true,
"process_time": 30,
"data": {
"working_condition": true,
"reason": "The Website exist with code 200 and accessible for users ",
"redirected": {
"isredirected": false,
"redirectedUrl": "",
"reason": ""
},
"parked_website": {
"isparked": false,
"reason": "",
"code": ""
}
}
}.........etc.
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