> ## 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.

# Get team detection total count



## OpenAPI

````yaml https://api.wirespeed.co/v1/openapi.json post /v1/team/statistics/detections/count
openapi: 3.0.0
info:
  title: Wirespeed API
  description: The public Wirespeed API. v1 is the first stable contract.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.wirespeed.co
security: []
tags: []
paths:
  /v1/team/statistics/detections/count:
    post:
      tags:
        - Team
      summary: Get team detection total count
      operationId: TeamController_getDetectionCount
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TeamStatisticsDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamDetectionCount'
        '400':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HttpError'
        '404':
          description: ''
      security:
        - bearer: []
components:
  schemas:
    TeamStatisticsDto:
      type: object
      properties:
        startDate:
          type: string
          description: Start date (inclusive, ISO8601 string)
        endDate:
          type: string
          description: End date (inclusive, ISO8601 string)
        days:
          type: number
          description: >-
            Number of days for time-based filtering (1-365). Required by most
            endpoints unless startDate/endDate provided.
    TeamDetectionCount:
      type: object
      properties:
        totalDetections:
          type: number
          description: Total number of detections
      required:
        - totalDetections
    HttpError:
      type: object
      properties:
        message:
          type: string
        statusCode:
          type: number
      required:
        - message
        - statusCode
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````