How to get a poll result in Polls App through API

Hi all,
I would like to get the results of polls through API call.
But in V1 version, it don’t have this call function.

I don’t have GET result of poll.

Get the votes and calculate the result. That is how it is done in the frontend.

Or get the options with the current votes count

i.e.

  "options": [
    {
      "id": 1233,
      "pollId": 107,
      "text": "One",
      "timestamp": 0,
      "order": 1,
      "confirmed": 1697397363,
      "duration": 0,
      "locked": false,
      "no": 1,
      "yes": 2,
      "maybe": 0,
      "owner": {
        "userId": null,
        "displayName": null,
        "emailAddress": null,
        "isNoUser": true,
        "type": null
      }
    },

Additional Info: The no count in the options json ist the count of actual no votes. If you want to know the unvoted count you have to calculate the actual count of participants from the votes.