The Backend Your
Players Feel, Not See.
Scale your Unity or Godot game with surgical-grade APIs. No servers, no ops, just instant game backend infrastructure.
The Core APIs
ReactionAPI
Sentiment-as-a-Service, without the database locks.
Handling social features in games is notoriously difficult at scale. When thousands of players upvote a trending community level simultaneously, standard relational databases crash under the lock contention.
ReactionAPI solves this natively at the Edge. You just send a JSON payload with a target_id (your UGC map, item, or player profile) and the reaction type (like "fire" or "heart"). We handle the upsert logic, prevent duplicate votes from the same user, and instantly aggregate the global distribution counts with zero latency.
PromoCode API
NewCreate, manage, and redeem promo codes in your game.
Reward your players with limited-time promo codes for exclusive items, currency boosts, or early access — directly from your game client.
PromoCode API lets you generate codes with a maximum redemption limit, track who redeemed them, and validate them in real-time. No backend logic needed — just call our endpoint and let your players claim their rewards.
Quick Start Snippets
using UnityEngine;
using UnityEngine.Networking;
using System.Text;
using System.Collections;
public class DymolReactions : MonoBehaviour {
private string apiKey = "YOUR_API_KEY";
public IEnumerator AddReaction(string targetId, string type, string userId) {
string url = "https://dymol-backend.dork3802.workers.dev/v1/react";
string json = $"{{\"target_id\":\"{targetId}\",\"type\":\"{type}\",\"user_id\":\"{userId}\"}}";
using (UnityWebRequest www = new UnityWebRequest(url, "POST")) {
byte[] bodyRaw = Encoding.UTF8.GetBytes(json);
www.uploadHandler = new UploadHandlerRaw(bodyRaw);
www.downloadHandler = new DownloadHandlerBuffer();
www.SetRequestHeader("Content-Type", "application/json");
www.SetRequestHeader("Authorization", $"Bearer {apiKey}");
yield return www.SendWebRequest();
}
}
} Simple, predictable pricing
Designed to scale with your playerbase.
Indie
- 500k monthly requests
- Full PromoCode API
- Custom promo codes
- Email Support
Studio
- 5M monthly requests
- Advanced analytics
- CSV exports
- Priority 1-on-1 support