Skip to content

Ransomware Victims API

Vysion monitors ransomware activity on the darknet, providing comprehensive data about detected victims. This API allows you to search for and retrieve information about ransomware victims.

Search through the ransomware victims database using various filters.

GET/api/v2/victim/search
NameTypeRequiredDescription
qstringNoSearch query string
gtestringNoDate filter (≥). Formats: Unix timestamp, YYYY-MM-DD, or YYYY-MM-DDThh:mm:ss
ltestringNoDate filter (≤). Formats: Unix timestamp, YYYY-MM-DD, or YYYY-MM-DDThh:mm:ss
pageintegerNoPage number for pagination
page_sizeintegerNoResults per page (default: 10)
groupstringNoFilter by ransomware perpetraitor
networkstringNoFilter by network type
countrystringNoFilter by victim’s country
languagestringNoFilter by language
sectorstringNoFilter by industry sector
Terminal window
curl "https://api.vysion.ai/api/v2/victim/search?q=american&page=1" \
--header 'Accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'
{
"data": {
"total": 25,
"hits": [
{
"page": {
"id": "64abc305e7f72075c8b582c2",
"url": {
"url": "http://example.onion/victims",
"networkProtocol": "http",
"domainName": "example.onion",
"port": 80,
"path": "/victims",
"signature": "88fef6f3-fdb6-486d-87e1-c7ae0750df94",
"network": "tor"
},
"foundAt": "2023-07-01T10:30:00Z",
"pageTitle": "Recent Victims",
"language": "en",
"html": "<html>...</html>",
"text": "Company victim information...",
"sha1sum": "da39a3ee5e6b4b0d3255bfef95601890afd80709",
"sha256sum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"ssdeep": "3:a+JrJL:aJrJL",
"detectionDate": "2023-07-01T10:30:00Z",
"screenshot": "base64_encoded_screenshot",
"chunk": false
},
"tag": [
{
"namespace": "ransomware",
"predicate": "victim",
"value": "confirmed"
}
],
"ransomwareGroup": "Conti",
"companyName": "American Manufacturing Corp",
"companyAddress": "123 Industrial Blvd, Detroit, MI",
"companyLink": "https://americanmfg.com",
"country": "United States",
"naics": "3363",
"industry": "Motor Vehicle Parts Manufacturing"
}
]
},
"error": null
}

Retrieve a specific ransomware victim record by its unique identifier.

GET/api/v2/victim/{id}
NameTypeRequiredDescription
idstringYesVictim record ID
Terminal window
curl "https://api.vysion.ai/api/v2/victim/64abc305e7f72075c8b582c2" \
--header 'Accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'

Each ransomware victim record contains the following information:

FieldTypeDescription
ransomwareGroupstringName of the ransomware group responsible
companyNamestringName of the victim company
companyAddressstringPhysical address of the company
companyLinkstringCompany website URL
countrystringCountry where the company is located
naicsstringNAICS industry classification code
industrystringIndustry sector description
pageobjectAssociated page/document information
tagarrayClassification tags

Common industry sectors found in ransomware victim data:

  • Manufacturing: Automotive, Electronics, Machinery
  • Healthcare: Hospitals, Medical Practices, Pharmaceuticals
  • Finance: Banks, Insurance, Investment Firms
  • Education: Schools, Universities, Training Centers
  • Government: Municipal, State, Federal Agencies
  • Technology: Software, IT Services, Telecommunications
  • Retail: Stores, E-commerce, Distribution
  • Energy: Oil & Gas, Utilities, Renewable Energy
StatusMeaningDescription
200OKSuccessful response
401UnauthorizedInvalid or missing API key
404Not FoundVictim record not found
422Unprocessable EntityValidation error
429Too Many RequestsRate limit exceeded