🔀🧑‍💻 user_votes

Votes for a given URL made by the current user

The votes relationship returns a list containing the votes for a given URL made by the current user.

This relationship can be retrieved using the relationships API endpoint. The response contains a list of Vote objects.

{
  "data": [
  	<VOTE_OBJECT>
  ],
  "links": {
    "next": "<string>",
    "self": "<string>"
  },
  "meta": {
    	"count": <int>,
      "cursor": "<string>"
  }
}
{
  "meta": {
    "count": 1,
  },
  "data": [
    {
      "attributes": {
        "date": 1624356005,
        "verdict": "harmless",
        "value": 1
      },
      "type": "vote",
      "id": "u-d0e196a0c25d35dd0a84593cbae0f38333aa58529936444ea26453eab28dfc86-b6f95068",
      "links": {
        "self": "https://www.virustotal.com/api/v3/votes/u-d0e196a0c25d35dd0a84593cbae0f38333aa58529936444ea26453eab28dfc86-b6f95068"
      }
    }
  ],
  "links": {
    "self": "https://www.virustotal.com/api/v3/urls/d0e196a0c25d35dd0a84593cbae0f38333aa58529936444ea26453eab28dfc86/user_votes"
  }
}