
Real-time business metrics and insights for DomainAdvisor board members
Use this endpoint to get board report data:
GET https://www.domainadvisor.com/api/board-reportImport and use the widget in your Next.js app:
import BoardReportWidget from '@/components/board-report-widget'
export default function YourPage() {
return (
<BoardReportWidget
apiUrl="https://www.domainadvisor.com/api/board-report"
theme="light"
refreshInterval={300000}
/>
)
}apiUrl - API endpoint URLtheme - 'light' or 'dark'refreshInterval - Auto-refresh interval (ms)className - Custom CSS classesThe API returns comprehensive business metrics:
{
"timestamp": "2024-01-15T10:30:00Z",
"overview": {
"total_users": 1250,
"total_analyses": 3450,
"total_revenue": 12500,
"monthly_analyses": 450,
"monthly_revenue": 1800
},
"top_performing_domains": [...],
"trends": {...},
"credit_metrics": {...},
"system_health": {...},
"kpis": {...}
}Note: This is a public API endpoint designed for transparency. No authentication is required, making it easy to embed in any application.