Skip to main content
GET
/
analytics
/
tenants
/
{tenant_id}
/
metrics
/
real-time
Get Realtime Metrics
curl --request GET \
  --url https://api.example.com/analytics/tenants/{tenant_id}/metrics/real-time \
  --header 'Authorization: Bearer <token>'
{
  "timestamp": "<string>",
  "tenant_id": "<string>",
  "active_calls": 123,
  "active_participants": 123,
  "active_agents": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

tenant_id
string<uuid>
required

Response

Successful Response

Real-time system metrics.

timestamp
string
required
tenant_id
string
required
active_calls
integer
required
active_participants
integer
required
active_agents
integer
required