The URL Information API provides detailed insights about a given URL, including registration details, SSL certificate information, DNS records, user analytics, threat intelligence, sandbox analysis, and rankings.
GET https://api.cybercheck360.com/v1/search/url
Parameter | Type | Required | Description |
---|---|---|---|
url |
string | Yes | The URL to retrieve details for (e.g., https://www.cybercheck360.com ). |
user_analytics |
boolean | No | Set to True to include user analytics data in the response. Defaults to False . |
sand_box |
boolean | No | Set to True to include sandbox analysis results. Defaults to False . Note : this can take longer to respond as it visits the webpage in realtime for analysis |
rankings |
boolean | No | Set to True to include domain rankings from various sources. Defaults to False . |
This API requires an API key to be passed in the request header.
Header Name | Type | Required | Description |
---|---|---|---|
X-API-KEY |
string | Yes | api key token |
GET https://api.cybercheck360.com/v1/search/url/?url=https://www.cybercheck360.com&user_analytics=True&sand_box=True&rankings=True
The API response includes multiple sections depending on the parameters enabled.
{
"url": "https://www.cybercheck360.com",
"timestamp": "2025-03-05T05:39:14.585200",
"domain": "cybercheck360.com",
"registration_date": "2024-03-02 12:04:52",
"last_update_date": "2024-07-31 21:37:35",
"expiration_date": "2029-03-02 12:04:52",
"organization": null,
"registrar": "GoDaddy.com, LLC",
"name_servers": [
"JEN.NS.CLOUDFLARE.COM",
"SRI.NS.CLOUDFLARE.COM"
],
"abuse_emails": [
"[email protected]"
],
"dns": {
"A": [
"172.67.72.232",
"104.26.4.131",
"104.26.5.131"
],
"AAAA": [
"2606:4700:20::681a:483",
"2606:4700:20::ac43:48e8",
"2606:4700:20::681a:583"
],
"MX": null,
"NS": null,
"TXT": null,
"SOA": null,
"CNAME": null,
"PTR": null,
"SRV": null,
"CAA": null
},
"threat_intel": {
"listings": {},
"overall_feeds": {
"Malware": 1,
"Spam": 1
},
"tags": []
},
}
{
"url": "https://www.cybercheck360.com",
"domain": "cybercheck360.com",
"registration_date": "2020-01-01",
"last_update_date": "2022-01-01",
"expiration_date": "2023-01-01",
"organization": "Example Organization",
"registrar": "Example Registrar",
"name_servers": ["ns1.example.com", "ns2.example.com"],
"abuse_emails": ["[email protected]"]
}
user_analytics=True
){
"user_analytics": {
"url_analytics": {
"search_count": 100,
"fp_reports_count": 50,
"malicious_reports_count": 10,
"user_blacklist_count": 5,
"user_whitelist_count": 20
},
"domain_analytics": {
"search_count": 150,
"fp_reports_count": 70,
"malicious_reports_count": 20,
"user_blacklist_count": 8,
"user_whitelist_count": 30
}
}
}
"threat_intel": {
"listings": {},
"overall_feeds": {
"Malware": 1,
"Spam": 1
},
"tags": []
}
sand_box=True
)When enabled, the sandbox analysis captures:
Feature | Description |
---|---|
Website Behavior | Tracks cookies, scripts, and file downloads. |
Indicators of Compromise (IOCs) | Extracts malicious URLs, domains, IPs, and file hashes. |
Network Connections | Logs all outgoing requests made by the webpage. |
Website Screenshot | Captures a visual representation of the page. |
SSL Certificate Details | Provides certificate issuer and validity information. |
Redirects | Lists HTTP redirections encountered while loading the page. |
Unique Domains & IPs Contacted | Identifies all external servers the page communicates with. |
{
"sand_box": {
"site_screenshot": "image_url",
"ssl_details": { ... },
"redirects": [ ... ],
"ip_address": "192.0.2.1",
"behavior": { ... },
"extracted_indicators": { ... }
}
}
rankings=True
){
"domain_rankings": {
"Cisco": { "rank": 123, "last_updated": "2023-01-01" },
"Tranco": "456",
"Majestic": "789",
"Open PageRank": "321",
"Cloudflare": "654"
}
}
Status Code | Description |
---|---|
400 |
Bad request. Ensure required parameters are correctly formatted. |
401 |
Unauthorized. Invalid or missing API key. |
403 |
Forbidden. Access to the requested resource is denied. |
404 |
URL not found. The requested URL does not exist. |
500 |
Internal Server Error. An unexpected error occurred on the server. |