Skip to main content
GET
/
api
/
v1
/
accounts
/
{account_id}
/
funnels
/
{id}
/
stats
Get pipeline stats
curl --request GET \
  --url https://connect.voxys.ai/api/v1/accounts/{account_id}/funnels/{id}/stats \
  --header 'api_access_token: <api-key>'
{
  "total_cards": 45,
  "total_value": 250000,
  "won_cards": 12,
  "won_value": 80000,
  "lost_cards": 5,
  "conversion_rate": 26.7
}

Documentation Index

Fetch the complete documentation index at: https://developers.voxys.ai/llms.txt

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

Authorizations

api_access_token
string
header
required

API access token for authentication. Obtain from your Voxys Connect profile settings.

Path Parameters

account_id
integer
required

The numeric ID of the account.

id
integer
required

Response

Pipeline stats.

total_cards
integer
Example:

45

total_value
number<float>
Example:

250000

won_cards
integer
Example:

12

won_value
number<float>
Example:

80000

lost_cards
integer
Example:

5

conversion_rate
number<float>
Example:

26.7