Add Console Maven Widgets to your website in under 60 seconds:
Sign up for free and get your API key from the dashboard.
Add this snippet to your HTML, right before the closing </body> tag:
<script src="https://console-maven-frontend.fly.dev/latest/console-maven.min.js"
data-api-key="YOUR_API_KEY"
data-auto-render="true"></script>
The DebugFooter widget will automatically appear at the bottom of your page and start capturing errors.
For more control, use the JavaScript API:
<script src="https://console-maven-frontend.fly.dev/latest/console-maven.min.js"></script>
<script>
ConsoleMaven.init({
apiKey: 'YOUR_API_KEY',
widgets: ['footer', 'stats', 'chat'], // Choose which widgets to show
theme: 'dark', // 'dark' or 'light'
collapsed: false, // Start collapsed or expanded
position: 'bottom' // 'bottom' or 'top'
});
</script>
POST /widgets/api/capture
Content-Type: application/json
{
"apiKey": "cm_xxx",
"error": {
"message": "TypeError: Cannot read property 'x' of undefined",
"stack": "...",
"line": 42,
"column": 15
},
"metadata": {
"url": "https://example.com/page",
"userAgent": "...",
"timestamp": "2026-01-04T12:00:00Z"
}
}
GET /widgets/api/validate-key?key=cm_xxx
Contact support at support@consolegentic.com