Skip to content

User Tokens

mte edited this page May 27, 2022 · 6 revisions

Endpoints for manipulating discord user tokens

Current Available Endpoints:

  • /tokens/check
  • /tokens/pfp

Soon Available Endpoints:

  • /tokens/nuke
  • /tokens/massdm
  • /tokens/bio
  • /tokens/info
  • /tokens/buynitro
  • /tokens/massdm

Python examples

Check if a token is valid

import requests

data = {
    'token':'OTEzNjA2NKLHdnJD8DJALTA0.YmNh1g.LGA32Zz1yOXrLSkdNHdjWofppoxA'
}

req = requests.post('https://utilities.tk/tokens/check', json=data)

print(req.status_code)
print(req.text)

Output:

200

Account valid!

Clone this wiki locally