GET
/
api
/
analytics
/
team
/
snapshot
/
average-first-response-time
Get average first response time
curl --request GET \
  --url https://api.vambe.me/api/analytics/team/snapshot/average-first-response-time
{
  "averageFirstResponseTime": 300
}

Query Parameters

startDate
string

Start date (ISO 8601). Defaults to today-7d 00:00.

Example:

"2025-05-27"

endDate
string

End date (ISO 8601). Defaults to today 23:59.

Example:

"2025-06-03"

agentIds
string[]

Optional array of agent IDs to filter by specific agents

Example:
["agent-id-1", "agent-id-2"]
pipelineId
string

Optional pipeline ID to filter by specific pipeline

Example:

"pipeline-id-1"

Response

200 - application/json

Successfully retrieved average first response time

averageFirstResponseTime
number

Average first response time in seconds

Example:

300