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');