Skip to main content
GET
/
votes
/
mine
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": []
  }
]
This endpoint requires JURY or ADMIN authentication.
Retrieves all votes for the authenticated user (jury member). The user ID is automatically extracted from the authentication token.

Authentication

The id_user is automatically determined from the authenticated user’s token. You don’t need to provide it in the request.

Response

Returns an array of vote objects for the authenticated user:
id_vote
integer
Unique identifier for the vote
id_user
integer
ID of the authenticated user
id_movie
integer
ID of the movie being voted on
note
enum
Vote rating. Possible values: YES, NO, TO DISCUSS
comments
string
Comments from the jury member
modification_count
integer
Number of times the vote has been modified
Movie
object
Associated movie information
history
array
Array of vote history records showing previous values, ordered by creation date
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": []
  }
]