curl --request GET \
--url https://discordbotlist.lol/api/v1/bots/{id}/votes \
--header 'Authorization: <api-key>'import requests
url = "https://discordbotlist.lol/api/v1/bots/{id}/votes"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://discordbotlist.lol/api/v1/bots/{id}/votes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://discordbotlist.lol/api/v1/bots/{id}/votes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://discordbotlist.lol/api/v1/bots/{id}/votes"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://discordbotlist.lol/api/v1/bots/{id}/votes")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://discordbotlist.lol/api/v1/bots/{id}/votes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"votes": [
{
"user_id": "336878018143223809",
"voted_at": "2026-09-12T08:15:00.000Z"
}
]
}{
"error": "Invalid token."
}{
"error": "Bot not found."
}{
"error": "Rate limit exceeded.",
"retryAfter": 42
}Recent votes
The vote log, newest first. Read from the append-only event log rather than the one-row-per-user table, which is the only place the history exists.
User ids and timestamps and nothing else: the caller already shares a server with these people, and returning names or avatars would turn a vote lookup into a profile scrape. Rate limit: 60 requests per minute per token.
curl --request GET \
--url https://discordbotlist.lol/api/v1/bots/{id}/votes \
--header 'Authorization: <api-key>'import requests
url = "https://discordbotlist.lol/api/v1/bots/{id}/votes"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://discordbotlist.lol/api/v1/bots/{id}/votes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://discordbotlist.lol/api/v1/bots/{id}/votes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://discordbotlist.lol/api/v1/bots/{id}/votes"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://discordbotlist.lol/api/v1/bots/{id}/votes")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://discordbotlist.lol/api/v1/bots/{id}/votes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"votes": [
{
"user_id": "336878018143223809",
"voted_at": "2026-09-12T08:15:00.000Z"
}
]
}{
"error": "Invalid token."
}{
"error": "Bot not found."
}{
"error": "Rate limit exceeded.",
"retryAfter": 42
}Authorizations
The bot's API token, generated on its edit page. Sent bare or as Bearer <token> -- both are accepted, because the libraries already posting to other lists send both. The token is shown once; generating a new one invalidates the old.
Path Parameters
The bot's Discord application id. It has to be the bot the token belongs to.
^\d{17,19}$Query Parameters
1 to 100. Anything outside the range is clamped rather than refused.
1 <= x <= 100Response
The most recent votes.
Show child attributes
Show child attributes