Skip to main content
GET
/
v1
/
analytics
/
overview
cURL
curl --request GET \
  --url https://client-api.salesfinity.co/v1/analytics/overview \
  --header 'x-api-key: <api-key>'
{
  "total_calls": {
    "value": 123,
    "growth": 123
  },
  "connected_calls": {
    "value": 123,
    "growth": 123
  },
  "conversations": {
    "value": 123,
    "growth": 123
  },
  "meetings_set": {
    "value": 123,
    "growth": 123
  },
  "total_follow_up_tasks": {
    "value": 123,
    "growth": 123
  }
}
Returns aggregated analytics metrics with growth rates compared to the previous period. Use this endpoint to get a high-level summary of call performance including total calls, connected calls, conversations, meetings set, and follow-up tasks.

Query Parameters

  • start_date (required, date): Start date for the analytics period (ISO 8601 format).
  • end_date (required, date): End date for the analytics period (ISO 8601 format).
  • user_ids (optional, array of strings): Filter by specific user IDs.
  • disposition_ids (optional, array of numbers): Filter by disposition IDs (1-14).

Response

Returns metrics with current values and growth percentages compared to the previous period of equal length. Metrics included:
  • total_calls - Total number of calls made
  • connected_calls - Calls that connected (answered by human, disposition < 10)
  • conversations - Connected calls with meeting set or duration >= 60s
  • meetings_set - Calls with disposition ID = 1 (Meeting Set)
  • total_follow_up_tasks - Number of follow-up tasks created

Authorizations

x-api-key
string
header
required

Query Parameters

start_date
string<date>
required

Start date for the analytics period

end_date
string<date>
required

End date for the analytics period

user_ids
string[]

Filter by specific user IDs

disposition_ids
integer[]

Filter by disposition IDs (1-14)

Response

200 - application/json

Analytics overview retrieved successfully

total_calls
object
required
connected_calls
object
required
conversations
object
required
meetings_set
object
required
total_follow_up_tasks
object
required