Authorization
Using your personal token, which you can get using the /newtoken command with the Discord bot, you can manage your projects with a few API endpoints. Each of these endpoints require authorization using this token using the "Authorization" HTTP header with the value set to your personal token.
Example
local res = http.get("https://pinestore.cc/api/auth/profile", {["Authorization"] = AUTH_TOKEN})
local data = res.readAll()
print(data)