The simplest solution for developers looking to monetize their software, without the hassle.
- Head over to link.eleutheri.com
- Navigate to Create Link
API Methods to verify users have completed advertisement links
⚠️ Intended Usage: Discord Bots, Web Applications, API's
Validate completed links via Discord ID
constpacket=awaitfetch(`https://link.eleutheri.com/v1/project/:projectPrefix/discord/:discordID`);if(packet.status!==200){returnconsole.log("Invalid License");}constbody=awaitpacket.json();if(!body.valid){returnconsole.log("Invalid License");}console.log("Valid License:",body);
⚠️ Intended Usage: Lua Scripts, Python Scripts, Desktop Applications
importrequestsproject_prefix=""license_key=input("License Key: ")
response=requests.get("https://link.eleutheri.com/v1/project/{}/licenses/{}".format(project_prefix, license_key))
ifresponse.status_code!=200:
print("Invalid License")
exit(1)
body=response.json()
ifnotbody["valid"]:
print("Invalid License")
exit(1)
print("Valid!", body)We'd love for your contributions, you'll need some resources first:
DATABASE_URL=""DISCORD_OAUTH_ID=""DISCORD_OAUTH_SECRET=""CAPTCHA_SECRET=""SUCCESS_WEBHOOK=""PROJECT_WEBHOOK=""UPTIME_URL=""