CORE API
Deploy high-speed intelligence gathering directly into your applications. Access 93 Billion records via our globally distributed node network.
NETWORK STATUS
ALL SYSTEMS OPERATIONAL
AVG LATENCY
142MS
01. AUTHENTICATION
All requests must include your unique identifier in the request body. Unauthorized requests are automatically dropped by the firewall.
X-API-KEY
[STRING]
GUARD-XXXX-XXXX-XXXX
02. SEARCH MATRIX
Execute a multi-vector search across all intelligence nodes.
POST
https://www.guardyou.top/api/api
{
"key": "YOUR_LICENSE_KEY",
"query": "TARGET_DATA" // Email, User, IP, Phone
}
03. PYTHON IMPLEMENTATION
import requests
def query_matrix(target):
url = "https://www.guardyou.top/api/api"
payload = {
"key": "GUARD-LIFETIME-SECURE",
"query": target
}
response = requests.post(url, json=payload)
return response.json()
# Execute Analysis
intel = query_matrix("admin@target.com")
print(intel)