Related Articles
API (TIP)
Domain-API
Domain-API
Description
The Domain Information API provides detailed insights about a given domain, including registration details, SSL certificate information, DNS records, user analytics, threat intelligence, and rankings.
Endpoint
1GET https://api.cybercheck360.com/v1/search/domainQuery Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
domain | string | Yes | The domain name to retrieve details for (e.g., cybercheck.com). |
ssl_details | boolean | No | Set to True to include SSL certificate details in the response. Defaults to False. |
user_analytics | boolean | No | Set to True to include user analytics data in the response. Defaults to False. |
rankings | boolean | No | Set to True to include domain rankings from various sources. Defaults to False. |
cybercheck360 | boolean | No | Set to True to include Cybercheck360's verdict. Defaults to False. |
Authentication
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 |
Sample Request
1GET https://api.cybercheck360.com/v1/search/domain/?ssl_details=true&user_analytics=true&rankings=true&cybercheck360=true&domain=cybercheck360.comResponse
The API response includes multiple sections depending on the parameters enabled.
Full Response (With All Parameters Enabled)
1{
2 "domain": "cybercheck360.com",
3 "timestamp": "2025-07-16T03:58:10.993225",
4 "parent_domain": "CYBERCHECK360.COM",
5 "registration_date": "2024-03-02 12:04:52",
6 "last_update_date": "2024-07-31 21:37:35",
7 "expiration_date": "2029-03-02 12:04:52",
8 "organization": null,
9 "registrar": "GoDaddy.com, LLC",
10 "name_servers": [
11 "JEN.NS.CLOUDFLARE.COM",
12 "SRI.NS.CLOUDFLARE.COM"
13 ],
14 "abuse_emails": [
15 "abuse@godaddy.com"
16 ],
17 "ssl_details": {
18 "owner_org": null,
19 "owner_country": null,
20 "issuer_org": "Google Trust Services",
21 "issuer_country": "US",
22 "serial_number": "0x7fc9110a704a17000e79822b430bdac0",
23 "version": "v3",
24 "valid_from": "2025-06-18T17:57:38",
25 "valid_to": "2025-09-16T18:57:30",
26 "fingerprint_sha256": "eda0710830633d9ae94a543a531214aae2f682986f3ce483422de7aae43e3695"
27 },
28 "dns": {
29 "A": [
30 "172.66.47.119",
31 "172.66.44.137"
32 ],
33 "AAAA": [
34 "2606:4700:310c::ac42:2f77",
35 "2606:4700:310c::ac42:2c89"
36 ],
37 "MX": [
38 "cybercheck360-com.mail.protection.outlook.com"
39 ],
40 "NS": [
41 "jen.ns.cloudflare.com",
42 "sri.ns.cloudflare.com"
43 ],
44 "TXT": [
45 "<ares_query_txt_result> text=v=spf1 include:spf.protection.outlook.com include:145781256.spf10.hubspotemail.net ~all, ttl=-1",
46 "<ares_query_txt_result> text=google-site-verification=4CYCe8XiGTrTp6hcFTvrS3Ax2dGgSS202JMJvzE-Rfk, ttl=-1",
47 "<ares_query_txt_result> text=MS=ms44572396, ttl=-1",
48 "<ares_query_txt_result> text=ahrefs-site-verification_571211e9a2b831bd5a9c534435f5e15bf9e9f77a99c86a40601f73f030c55fd2, ttl=-1",
49 "<ares_query_txt_result> text=google-site-verification=boalzMWfuZvI2MZAetRlOxDfKCyv8wJRcibfuSaCIGU, ttl=-1"
50 ],
51 "spf_status": "Soft-Fail",
52 "SOA": [
53 "Error: 'ares_query_soa_result' object is not iterable"
54 ],
55 "CNAME": null,
56 "PTR": null,
57 "SRV": null,
58 "CAA": null
59 },
60 "threat_intel": {
61 "listings": {
62 "summary": {},
63 "tags": [],
64 "listed_feeds": []
65 },
66 "overall_feeds": {
67 "Malware": 4,
68 "Botnet": 1,
69 "Spam": 3,
70 "Phishing": 1,
71 "Whitelist": 1
72 }
73 },
74 "user_analytics": {
75 "search_count": 3,
76 "fp_reports_count": 0,
77 "malicious_reports_count": 0,
78 "user_blacklist_count": 0,
79 "user_whitelist_count": 0
80 },
81 "domain_rankings": {
82 "Cisco": {},
83 "Tranco": {},
84 "Majestic": {},
85 "Open PageRank": {},
86 "Cloudflare": {}
87 },
88 "cybercheck360": {
89 "confidence": "high",
90 "verdict": "benign"
91 }
92}Individual Responses by Parameter
Base Response (Always Included)
1{
2 "domain": "cybercheck360.com",
3 "registration_date": "2024-03-02 12:04:52",
4 "last_update_date": "2024-07-31 21:37:35",
5 "expiration_date": "2029-03-02 12:04:52",
6 "organization": null,
7 "registrar": "GoDaddy.com, LLC",
8 "name_servers": [
9 "JEN.NS.CLOUDFLARE.COM",
10 "SRI.NS.CLOUDFLARE.COM"
11 ],
12 "abuse_emails": [
13 "abuse@godaddy.com"
14 ]
15}SSL Details (If ssl_details=True)
1"ssl_details": {
2 "owner_org": null,
3 "owner_country": null,
4 "issuer_org": "Google Trust Services",
5 "issuer_country": "US",
6 "serial_number": "106523819383835121170390612117509394286",
7 "version": "v3",
8 "valid_from": "2025-02-20T14:49:27",
9 "valid_to": "2025-05-21T15:49:20",
10 "fingerprint_sha256": "c59035989c285a0b19720ec59842bca36fc8b935afb13dc78c9d6021d12baf07"
11}User Analytics (If user_analytics=True)
1"user_analytics": {
2 "search_count": 27,
3 "fp_reports_count": 0,
4 "malicious_reports_count": 0,
5 "user_blacklist_count": 0,
6 "user_whitelist_count": 0
7}Domain Rankings (If rankings=True)
1"domain_rankings": {
2 "Cisco": {
3 "rank": 1,
4 "last_updated": "2024-07-08T14:57:14Z"
5 },
6 "Tranco": {
7 "rank": 1,
8 "last_updated": "2024-07-08T15:21:48Z"
9 },
10 "Majestic": {
11 "rank": 1,
12 "last_updated": "2024-07-08T16:01:23Z"
13 },
14 "Open PageRank": {
15 "rank": 3,
16 "last_updated": "2024-07-08T17:32:38Z"
17 },
18 "Cloudflare": {
19 "rank": 1,
20 "last_updated": "2024-08-09T11:25:28Z"
21 }
22}CyberCheck360 Verdict (If cybercheck360=True)
1{
2 "cybercheck360": {
3 "confidence": "high",
4 "verdict": "benign"
5 },
6}Error Responses
| 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 | Domain not found. The requested domain does not exist. |
500 | Internal Server Error. An unexpected error occurred on the server. |