Skip to main content

Check User Vote

Check whether a specific user has voted for your bot in the last 12 hours.

GET /api/bots/:id/check (Auth Required)

Parameters​

Query ParamTypeDescription
userId requiredstringThe Discord snowflake ID of the user to check.

Example Request​

GET /api/bots/123456789012345678/check?userId=876543210987654321

Response​

{
"error": false,
"voted": 1 // 1 = voted, 0 = not voted
}