Comment's author.
The author relationship returns information about the user who posted the comment.
This relationship can be retrieved using the relationships API endpoint. The response contains a User object.
{
"data": {
<USER_OBJECT>
},
"links": {
"self": "<string>"
},
"meta": {
"count": 1
}
}
{
"data": {
"attributes": {
"first_name": "Blabla",
"last_name": "Blabla",
"profile_phrase": "",
"reputation": 1,
"status": "active",
"user_since": 1594687558
},
"id": "mr_robot",
"links": {
"self": "https://www.virustotal.com/api/v3/users/mr_robot"
},
"type": "user"
},
"links": {
"self": "https://www.virustotal.com/api/v3/comments/d-blablabla.com-a1f8b520/author"
},
"meta": {
"count": 1
}
}