invalid-usernames @invalid-usernames

does anyone know how to make a username checker that checks for taken usernames (or just a username checker)? i need a reliable way of finding all the 2 and 3chars

Jun 18, 2024, 9:24 PM
4

comments

https://api.wasteof.money/users/:username will return info about the user if it exists, and return {"error":"no user found"} if the user doesn’t exist.

Yes, look up how to get data from an API in Python (or some other programming language but Python is easy)

ok, i’ll look into it :)