Projects
Project endpoints are subject to stricter rate limits than others.
Update Discord Bot Commands
POST
v1/projects/@me/commandsUpdates the commands for a specific bot.
Post Body
This endpoint accepts an array of objects following Discord's application command structure.
Get Vote Status By User
GET
v1/projects/@me/votes/:user_idGets the vote status for an individual user.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
| source? | Source | The source where the user ID is coming from. |
Response Body
| Field | Type | Description |
|---|---|---|
| created_at | Date | The timestamp of when the user last voted. |
| expires_at | Date | The timestamp of when the user can vote again. |
| weight | number | The amount of votes this vote counted for. |
Example Response
{
"created_at": "2023-10-01T12:34:56.789Z",
"expires_at": "2023-10-01T18:34:56.789Z",
"weight": 1
}