Skip to main content
POST
/
v1
/
team
/
statistics
/
resources
Get team billable resource statistics
curl --request POST \
  --url https://api.wirespeed.co/v1/team/statistics/resources \
  --header 'Authorization: Bearer <token>'
{
  "billableUsers": 123,
  "billableEndpoints": 123,
  "totalUserSeats": 123,
  "totalEndpointSeats": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.wirespeed.co/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.

Response

billableUsers
number
required

Number of billable users

billableEndpoints
number
required

Number of billable endpoints

billableUsersSource
enum<string>
required

Source of billable users count

Available options:
license,
derived
billableEndpointsSource
enum<string>
required

Source of billable endpoints count

Available options:
license,
derived
totalUserSeats
number | null
required

Total user seats from license (null when derived)

totalEndpointSeats
number | null
required

Total endpoint seats from license (null when derived)