Works With Everything
If it can make an HTTP request, it can reward users with Loyalteez. Native SDKs, plugins, bots, and a simple REST API for any platform.
Choose Your Integration Method
Four ways to connect. Pick what fits your stack.
Core Platform
2 optionsOur production APIs and SDK
Community Bots
2 optionsReward engagement in your communities
Any Platform
2 optionsIf it can make HTTP requests, it works with Loyalteez
One API, Any Language
Our REST API works with any programming language. Here are examples in popular languages.
// One script tag, one init call
<script src="https://api.loyalteez.app/sdk.js"></script>
<script>
LoyalteezAutomation.init('YOUR_BRAND_ID');
// Track any event
LoyalteezAutomation.track('action_name', {
userEmail: '[email protected]'
});
</script>import { useEffect } from 'react';
function App() {
useEffect(() => {
LoyalteezAutomation.init(
process.env.REACT_APP_BRAND_ID
);
}, []);
const handleSignup = (email) => {
LoyalteezAutomation.track('account_creation', {
userEmail: email
});
};
}import requests
def reward_user(email, event_type):
response = requests.post(
'https://api.loyalteez.app/loyalteez-api/manual-event',
json={
'brandId': BRAND_ID,
'eventType': event_type,
'userEmail': email
}
)
return response.json()curl -X POST \
https://api.loyalteez.app/loyalteez-api/manual-event \
-H "Content-Type: application/json" \
-d '{
"brandId": "YOUR_BRAND_ID",
"eventType": "custom_action",
"userEmail": "[email protected]",
"metadata": {"source": "api"}
}'The Universal Integration Pattern
Every integration follows the same simple pattern: detect an action, send an event, we handle the rest. No matter the platform, no matter the use case.
User performs action
Signup, purchase, comment, anything
Your platform detects it
Webhook, SDK auto-detect, or manual trigger
Send event to Loyalteez
One HTTP POST with user email and event type
We handle the rest
Wallet creation, LTZ distribution, blockchain
The API is the Product
One simple REST API. If your platform can make HTTP requests, it can reward users with LTZ.
Don't See Your Platform?
Our REST API works with anything that can make HTTP requests. Check our custom integration guide or reach out. We're happy to help.