SCARPS Bot List API
Search…
SCARPS Bot List API Docs
Getting started
Introduction
API Token
Bot APIs
Server Count API
Check Voted API
Powered By
GitBook
Check Voted API
Get an array of users who have voted for your bot.
get
https://botlist.scarps.club
/api/auth/liked/:botid
URL
Examples
Javascript
Console log
1
const
fetch
=
require
(
'node-fetch'
);
2
fetch
(
'https://botlist.scarps.club/api/auth/liked/:botid'
,
{
headers
:
{
'Authorization'
:
"YOUR_AUTH_TOKEN"
}
}).
then
(
res
=>
res
.
json
()).
then
(
data
=>
{
3
return
console
.
log
(
data
);
4
}).
catch
(
console
.
error
);
Copied!
Bot APIs - Previous
Server Count API
Last modified
5mo ago
Copy link
Contents
get
URL
Examples
Javascript