GET
/
votes
curl --request GET \
  --url https://api.guilds.me/v1/votes \
  --header 'Guilds-Api-Key: <api-key>' \
  --header 'Guilds-App-Id: <api-key>'
{
  "totalVotes": 123,
  "monthlyVotes": 123,
  "votes": [
    {
      "userId": "<string>",
      "remaining": 123,
      "discord": true
    }
  ]
}

Authorizations

Guilds-Api-Key
string
header
required

API Key specific to each guild

Guilds-App-Id
string
header
required

App ID specific to each guild

Response

200
application/json
Guild Votes response
totalVotes
integer

Total number of votes for this guild all time

monthlyVotes
integer

The total number of votes for this guild this month

votes
object[]