VUZDevelopers

Get mobile home-screen summary

GET
/analytics/dashboard/mobile-summary

Compact summary for the mobile home screen — revenue (today/month/trend), alerts (overdue invoices, pending expenses), and 5 most recent documents. Designed for one round-trip on cellular.

X-Api-Key<token>

Business API key, e.g. vuz_ab12cdef... Created via Settings → Integrations → API Keys. Unlike partner keys, a public API key's STRING does not encode its environment — isolation instead comes from a completely separate sandbox database: a key minted on the Sandbox server (above) only ever reads/writes sandbox data and can never see or affect production, regardless of what the key looks like.

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/analytics/dashboard/mobile-summary"
{  "revenue": {    "todayAmount": 4956,    "monthAmount": 87420,    "monthTrendPct": 12.4,    "currency": "ILS",    "weekly": [      4200,      0,      1180,      800,      0,      2360,      4956    ]  },  "alerts": [    {      "type": "overdue_invoices",      "severity": "warning",      "label": "3 חשבוניות באיחור",      "count": 3    }  ],  "recentDocuments": [    {      "id": "string",      "docType": "tax_invoice",      "docNumber": "2025-001234",      "clientName": "ישראל ישראלי",      "grandTotal": 4956,      "status": "issued",      "issueDate": "2026-05-13"    }  ]}