Search for victim profiles (aggregated log metadata). Each victim represents a compromised machine with device info, IPs, emails, Discord IDs, etc.
Response Format Note: This endpoint returns an unwrapped response (items, meta, next_cursor at root level)
rather than wrapped in the standard {success, data} envelope. SDKs v1.0.3+ handle this automatically.
Example response:
{
"items": [
{
"log_id": "abc123def456",
"device_users": ["victim_user"],
"hwids": ["ABCD-1234-5678"],
"device_ips": ["192.168.1.1"],
"device_emails": ["victim@email.com"],
"discord_ids": ["123456789012345678"],
"total_docs": 150,
"pwned_at": "2024-01-15T10:30:00Z",
"indexed_at": "2024-01-16T08:00:00Z"
}
],
"meta": {
"total": 1,
"count": 1,
"has_more": false
},
"next_cursor": null
}
| Feature | Stealer Search | Victims Search |
|---|---|---|
| Searches | Credentials (URLs, usernames, passwords) | Device profiles (IPs, Discord IDs, emails on device) |
| Use case | Find credentials for an email/domain | Find devices associated with an identifier |
| Returns | Individual credential records | Victim device profiles |
/service/v2/stealer/search) when:
/service/v2/victims/search) when:
q parameter automatically detects your query type!| Query Format | Detected Type |
|---|---|
user@example.com | Email on device |
192.168.1.1 | IP address of device |
123456789012345678 | Discord ID on device |
ABCD1234-5678 | Hardware ID (HWID) |
| Field | Description |
|---|---|
log_id | Unique identifier for this victim profile. Use with Manifest endpoint. |
device_users | Usernames found on the device |
hwids | Hardware IDs of the device |
device_ips | IP addresses of the infected device |
device_emails | Email addresses found on the device |
discord_ids | Discord IDs found on the device |
total_docs | Number of documents/files in the stealer log |
pwned_at | When the device was compromised |
indexed_at | When the log was indexed |
log_id, use it to get the full victim manifest:
API key for authentication (lowercase header name)
Minimum document count in log
Maximum document count in log
Hardware ID filter
Device username filter
Victim search results