Users

Get User

GET /user/:id

Path Parameters

Name
Type
Description

id*

string

ID of Specific User

{
        username: "",
        id: "",
        bots: []
    }

Has Voted

GET /hasvoted/:userid/:botid/

Checks whether a user has or has not voted for your bot in the last 12 hours

Path Parameters

Name
Type
Description

Bot ID*

string

The bot you are checking against

User ID*

string

The user you are checking

{voted: boolean}

Last Voted Timestamp

GET /lastvoted/:userid/:botid/

Path Parameters

Name
Type
Description

User ID

string

The user you are checking against

Bot ID

string

The bot the user must have voted for

The endpoint will either return zero or a timestamp depending on whether the user has voted and if the bot is valid.

{
    "timestamp": 1759790178747
}

Last updated