Vanitas Api
All Endpoints of Vanitas Api
Language : Golang
Developer : @nk_guy
Base Url : https://vanitas-api.up.railway.app
=> /user/:userid - Get info About User
The Vampire of Blue Moon User Only Routes:
=> /ban - Ban User
=> /unban - unban user
How to use Ban and and Unban ? : Using Post Requests
Example:
Python :
from requests import post
data = {
"user": 1234567890,
"reason" : "test",
"enforcer": 1234456677
"admin_token": <your admin token>
}
res = post("https://vanitas-api.up.railway.app/ban" , json=data)
print(res.text)