Applications

Registered Apps

Name API Key Created Status
Admin Portal
demo-admin-key-003
05/29/2026
Active
Mobile API
demo-api-key-002
05/29/2026
Active
My Web App
demo-webapp-key-001
05/29/2026
Active

Integration Guide

Send telemetry to AnalyticsHub by calling the REST API with your app's API key.

POST a page view:
curl -X POST /api/collect/pageview \
  -H "Content-Type: application/json" \
  -d '{"apiKey":"YOUR_KEY","path":"/home","title":"Home"}'
    
POST a custom event:
curl -X POST /api/collect/event \
  -H "Content-Type: application/json" \
  -d '{"apiKey":"YOUR_KEY","name":"button_click","category":"UI","label":"signup_btn"}'