Use this endpoint to verify a user’s vote status before granting in-bot perks or rewards. A user who voted fewer than 24 hours ago is considered an active voter.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/discordplace/discord.place/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
Authorization header.See Authentication for details.
Path Parameters
The Discord snowflake ID of your bot (a 17–20 digit numeric string).Example:
123456789012345678The Discord snowflake ID of the user whose vote status you want to check.Example:
987654321098765432Code Examples
Responses
200 — Success
true if the user cast a vote within the last 24 hours, false otherwise.The user’s total cumulative vote count for this bot across all time. Returns
0 if the user has never voted.Unix timestamp in milliseconds of the user’s most recent vote. Returns
null if the user has never voted.Example: 1694345400000Error Responses
Tips
For real-time vote notifications without polling, set up a Vote Webhook. The webhook fires immediately when a vote is cast, whereas this endpoint requires you to query on demand.

