Your AdTech platform is ready. Let's get you monetizing in 5 minutes!
Your personal API key for secure access to EmojiHouse AdTech
Generate and manage your production API keys in the dashboard
� Get Your API KeyAdd EmojiHouse ML API to your app in under 5 minutes
// Make API call to EmojiHouse ML endpoint
const response = await fetch('https://api.emojihouse.com/ml/predict', {
method: 'POST',
headers: {
'X-API-Key': 'YOUR_API_KEY_HERE', // Get from dashboard
'Content-Type': 'application/json'
},
body: JSON.stringify({
session_data: {
user_engagement: 0.75, // 0.0-1.0 engagement score
session_duration: 120, // Seconds
scroll_depth: 0.8, // 0.0-1.0 page scroll
interaction_count: 15 // Number of interactions
}
})
});
const result = await response.json();
// Use the results
console.log('EmojiScore:', result.emoji_score); // 87.5
console.log('Trust Level:', result.trust_level); // "high"
console.log('You Earned:', result.revenue_attribution); // $0.0325
console.log('Processing Time:', result.processing_time_ms); // 2.3ms
// Revenue automatically tracked in your dashboard! 💰
// View earnings at: /dashboard/api-keys
POST https://api.emojihouse.com/ml/predictActivate monetization and start earning revenue immediately
🎉 Congratulations! You're now part of the EmojiHouse developer community.
Need help? Our team responds in under 30 minutes.