curl --request GET \
--url https://discordbotlist.lol/api/v1/bots/{id}/check \
--header 'Authorization: <api-key>'import requests
url = "https://discordbotlist.lol/api/v1/bots/{id}/check"
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}/check', 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}/check",
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}/check"
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}/check")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://discordbotlist.lol/api/v1/bots/{id}/check")
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{
"voted": 1,
"hasVoted": true,
"votedAt": "2026-09-12T08:15:00.000Z",
"nextVoteAt": "2026-09-12T20:15:00.000Z"
}{
"error": "Invalid JSON body."
}{
"error": "Invalid token."
}{
"error": "Bot not found."
}{
"error": "Rate limit exceeded.",
"retryAfter": 42
}Check a user vote
Answers whether a user is inside their current 12-hour vote window. This is the endpoint that makes vote-for-perks possible, so its limit is the highest on the API: 600 requests per minute per token.
voted is 0 or 1 because that is what bot code written against other lists expects; hasVoted is the readable alias for new code. nextVoteAt lets the bot tell the user when to come back without recomputing the cooldown.
curl --request GET \
--url https://discordbotlist.lol/api/v1/bots/{id}/check \
--header 'Authorization: <api-key>'import requests
url = "https://discordbotlist.lol/api/v1/bots/{id}/check"
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}/check', 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}/check",
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}/check"
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}/check")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://discordbotlist.lol/api/v1/bots/{id}/check")
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{
"voted": 1,
"hasVoted": true,
"votedAt": "2026-09-12T08:15:00.000Z",
"nextVoteAt": "2026-09-12T20:15:00.000Z"
}{
"error": "Invalid JSON body."
}{
"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
The Discord user id to look up.
^\d{17,20}$