Reverse IP Lookup
Perform a reverse IP lookup to find domains resolved to a specific IP address, aiding in cybersecurity analysis and domain asset management.
Documentation
Feature Introduction
This API allows you to input an IP address and perform a reverse lookup to find all domain names resolved to that specific IP. This is crucial for understanding the domain assets behind an IP address, conducting cybersecurity analysis, and tracking malicious activities. The data returned by the interface includes, but is not limited to, a list of domains and resolution times, helping users fully grasp the association between IPs and domains.
Use Cases
- Cybersecurity Analysis: Identify domains associated with malicious IP addresses to assist in traceback and threat intelligence analysis.
- Domain Asset Management: Enterprise or individual users can quickly discover domain assets under their name or of interest via IP addresses.
- DDoS Protection: Quickly identify affected domains when facing an attack.
- Competitor Analysis: Research competitors' IP deployments and their associated domain services.
- Digital Forensics: Obtain more clues through reverse IP lookups during security incident responses.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"ip": "114.114.114.114",
"pageNo": 1
}Response Example
{
"code": "SUCCESS",
"message": "success",
"data": {
"total": 0,
"list": []
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| ip | string | 114.114.114.114 |
| pageNo | number | 1 |
Response Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | string | SUCCESS |
| message | string | success |
| data | object | {...} |
| data.total | number | 0 |
| data.list | array | [] |