curl -X GET https://api.marsai.com/votes/mine \
-H "Authorization: Bearer YOUR_TOKEN"
[
{
"id_vote": 1,
"id_user": 10,
"id_movie": 5,
"note": "YES",
"comments": "Excellent cinematography and storytelling",
"modification_count": 1,
"Movie": {
"id_movie": 5,
"title": "The Journey"
},
"history": [
{
"id_vote": 1,
"note": "TO DISCUSS",
"comments": "Good film but needs discussion",
"createdAt": "2026-03-01T10:00:00Z"
}
]
},
{
"id_vote": 2,
"id_user": 10,
"id_movie": 8,
"note": "NO",
"comments": "Does not meet festival standards",
"modification_count": 0,
"Movie": {
"id_movie": 8,
"title": "Another Film"
},
"history": []
}
]
curl -X GET https://api.marsai.com/votes/mine \
-H "Authorization: Bearer YOUR_TOKEN"
[
{
"id_vote": 1,
"id_user": 10,
"id_movie": 5,
"note": "YES",
"comments": "Excellent cinematography and storytelling",
"modification_count": 1,
"Movie": {
"id_movie": 5,
"title": "The Journey"
},
"history": [
{
"id_vote": 1,
"note": "TO DISCUSS",
"comments": "Good film but needs discussion",
"createdAt": "2026-03-01T10:00:00Z"
}
]
},
{
"id_vote": 2,
"id_user": 10,
"id_movie": 8,
"note": "NO",
"comments": "Does not meet festival standards",
"modification_count": 0,
"Movie": {
"id_movie": 8,
"title": "Another Film"
},
"history": []
}
]
id_user is automatically determined from the authenticated user’s token. You don’t need to provide it in the request.
YES, NO, TO DISCUSScurl -X GET https://api.marsai.com/votes/mine \
-H "Authorization: Bearer YOUR_TOKEN"
[
{
"id_vote": 1,
"id_user": 10,
"id_movie": 5,
"note": "YES",
"comments": "Excellent cinematography and storytelling",
"modification_count": 1,
"Movie": {
"id_movie": 5,
"title": "The Journey"
},
"history": [
{
"id_vote": 1,
"note": "TO DISCUSS",
"comments": "Good film but needs discussion",
"createdAt": "2026-03-01T10:00:00Z"
}
]
},
{
"id_vote": 2,
"id_user": 10,
"id_movie": 8,
"note": "NO",
"comments": "Does not meet festival standards",
"modification_count": 0,
"Movie": {
"id_movie": 8,
"title": "Another Film"
},
"history": []
}
]