Developer REST API
Integrate real-time OSINT intelligence into security platforms, investigation software, SIEM/SOAR workflows, and internal enterprise tools using standard HTTP requests and clean JSON responses.
Integration Workflow
1. Authenticate
Pass your enterprise key using Bearer authentication in standard HTTP headers.
2. Query Targets
Search phone numbers, vehicle registrations, domain WHOIS, or email intelligence.
3. Receive JSON
Instantly process structured, standardized JSON payloads with zero parsing overhead.
Python Request Example
import requests
url = "https://api.huntme.in/v1/investigate"
headers = {
"Authorization": "Bearer huntme_live_9f8a3c2b1e",
"Content-Type": "application/json"
}
payload = {
"target": "+14155552671",
"modules": ["phone", "carrier", "breaches"]
}
res = requests.post(url, json=payload, headers=headers)
data = res.json()
print("Discovered Entities:", data["entities"])Frequently Asked Questions
How do I authenticate with the Huntme REST API?
Authentication is handled via standard HTTP Bearer token headers. Pass your secret enterprise key: Authorization: Bearer <your_api_key>.
What is the average response latency of the API?
Our globally distributed edge endpoints achieve an average response time of under 100ms for cached and live query resolutions.
Can I integrate Huntme API into SIEM and SOAR platforms?
Yes. Standard JSON payloads make it easy to connect Huntme with Splunk, Cortex XSOAR, Microsoft Sentinel, IBM QRadar, or custom Python orchestration scripts.