Get Dashboard Analytics

Retrieves key analytics and metrics for the dashboard, providing an overview of visitor activity, contact generation, conversions, and demo engagement over a specified time period.

URL: https://yourproject.domain.com/api/v1/dashboard
Method : GET
Authorization: Bearer <your_token>
Request Header:
{
   "Content-Type" : "application/json",
   "Authorization" : "Your API Key"
}
Query Parameters:
| Parameter  | Type                | Required | Description                         |
| ---------- | ------------------- | -------- | ----------------------------------- |
| start      | string (YYYY-MM-DD) | No       | Start date for the analytics period |
| end        | string (YYYY-MM-DD) | No       | End date for the analytics period   |

Example: http://yourproject.domain.com/api/v1/dashboard?start=2026-03-19&end=2026-04-19
Success Response:
{
    "status": "success",
    "data": {
        "total_visitors": 10,
        "new_contacts": 5,
        "conversions": 1,
        "demo_views": 19,
        "period": {
            "start": "2026-03-19",
            "end": "2026-04-19"
        }
    }
}