Clues for the file
The clues relationship returns the list of all clues for a given file. This relationship is only available for Premium API users.
This relationship can be retrieved using the relationships API endpoint. The response contains a list of Clue objects.
{
"data": [
<CLUE_OBJECT>,
<CLUE_OBJECT>,
...
],
"links": {
"next": "<string>",
"self": "<string>"
},
"meta": {
"count": <int>,
"cursor": "<string>"
}
}
{
"data": [
{
"attributes": {
"features": [
{
"feature_type": "FILE_DROPPED_PATH",
"objects": [
"blablabla.exe"
]
}
],
"label": "P20_PLUS",
"last_month": 5,
"last_month_positive_rate": 1.0,
"last_month_total_log10_count": 2
},
"id": "0c1566aa069b9b6c26d169996bf81661e1f6d2e61f56e476c856f4963536994d",
"links": {
"self": "https://www.virustotal.com/ui/clue_rules/0c1566aa069b9b6c26d169996bf81661e1f6d2e61f56e476c856f4963536994d"
},
"type": "clue_rule"
},
{
"attributes": {
"features": [
{
"feature_type": "FILE_DROPPED_PATH",
"objects": [
"blabla.exe"
]
}
],
"label": "P20_PLUS",
"last_month": 5,
"last_month_positive_rate": 1.0,
"last_month_total_log10_count": 2
},
"id": "0f52c0912ea06201fa28729f22f27d208fe28b4027ab2d282d422b2392cd9db8",
"links": {
"self": "https://www.virustotal.com/ui/clue_rules/0f52c0912ea06201fa28729f22f27d208fe28b4027ab2d282d422b2392cd9db8"
},
"type": "clue_rule"
}
],
"links": {
"next": "https://www.virustotal.com/api/v3/files/4d522e5265508a045f2f5d6751dc5ff257715425fa57cf59165fe4053b959506/clues?cursor=STEwCi4%3D&limit=2",
"self": "https://www.virustotal.com/ui/files/4d522e5265508a045f2f5d6751dc5ff257715425fa57cf59165fe4053b959506/clues?limit=2"
},
"meta": {
"count": 10,
"cursor": "STEwCi4="
}
}