The complete authentication and licensing solution for your applications. Hardware ID locking, session management, and comprehensive audit logging—all in one powerful API.
✓ Unlimited Applications • ✓ Unlimited Licenses • ✓ Unlimited API Calls
Everything you need to protect and monetize your software
Get started in minutes with our easy-to-use API
import requests
import hashlib
import platform
# Generate hardware ID
def get_hwid():
return hashlib.sha256(
platform.node().encode()
).hexdigest()
# Initialize license
response = requests.post(
"https://authorized.lol/api/v1/init",
json={
"api_key": "authorized_your_api_key",
"license_key": "XXXXX-XXXXX-XXXXX",
"hwid": get_hwid()
}
)
data = response.json()
if data["success"]:
session = data["session_token"]
print("✓ Authentication successful!")
else:
print("✗ Authentication failed:", data["message"])