Bolt the game onto any platform
Works With Everything
Hook your brand into a live game. One integration reaches Discord, Telegram, Shopify, and the web — native SDKs, bots, and a simple REST API for any platform.
How Events Flow
Your app triggers an event. Our API processes it. The backend creates accounts and delivers RSNC. Done.
User action
signup, purchase, etc.
Real-time flow: Your App → Resonance API → Backend → Infrastructure → Response. Every event, same path.
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 Resonance
One API, Any Language
Our REST API works with any programming language. Here are examples in popular languages.
// Drop in the SDK and start tracking
<script src="https://api.rsnc.network/sdk.js"></script>
<script>
ResonanceAutomation.init('YOUR_BRAND_ID');
// Track any event
ResonanceAutomation.track('action_name', {
userEmail: '[email protected]'
});
</script>import { useEffect } from 'react';
function App() {
useEffect(() => {
ResonanceAutomation.init(
process.env.REACT_APP_BRAND_ID
);
}, []);
const handleSignup = (email) => {
ResonanceAutomation.track('account_creation', {
userEmail: email
});
};
}import requests
def reward_user(email, event_type):
response = requests.post(
'https://api.rsnc.network/resonance-api/manual-event',
json={
'brandId': BRAND_ID,
'eventType': event_type,
'userEmail': email
}
)
return response.json()curl -X POST \
https://api.rsnc.network/resonance-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 Resonance
One HTTP POST with user email and event type
We handle the rest
Account creation, RSNC distribution, delivery
The API is the Product
One simple REST API. If your platform can make HTTP requests, it can reward players with RSNC.
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.