Welcome back, Jane ๐Ÿ‘‹

Here's what's happening with your Webui projects and API usage today.

API Calls
โšก
1.2M
โ†‘ 12.5% from last week
Active Projects
๐Ÿ“ฆ
24
โ†‘ 2 deployed this week
Avg Response
โฑ๏ธ
42ms
โ†“ 8% improvement
Error Rate
โš ๏ธ
0.03%
โ†‘ 0.01% spike (resolved)

Recent Activity

View All โ†’
๐Ÿš€
Production Deploy #48
Successfully deployed marketing-v3 to global CDN
2m ago
๐Ÿ”‘
API Key Regenerated
New key created for mobile-client-sdk
1h ago
๐Ÿ‘ค
Team Invitation Sent
dev@agency.io invited as editor
3h ago
๐Ÿ›
Rate Limit Alert
Threshold reached on staging environment
5h ago
๐Ÿงฉ Quick Integration: React SDK
// Install: npm install @webui/sdk import { WebuiClient } from '@webui/sdk'; const client = new WebuiClient({ apiKey: process.env.WEBUI_API_KEY, environment: 'production', retry: { maxAttempts: 3, backoff: 1.5 } }); const components = await client.fetchUI({ templateId: 'landing-v2', vars: { primaryColor: '#6C3CE1', locale: 'en' } }); console.log('UI generated in', Date.now() - start, 'ms');