POST
/
detection
/
stats
/
noise-reduction
Get noise reduction statistics over time
curl --request POST \
  --url https://api.wirespeed.co/detection/stats/noise-reduction \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "days": 123
}'
[
  {
    "date": "<string>",
    "noiseReduction": 123,
    "totalDetections": 123,
    "escalatedDetections": 123
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
days
number
required

Number of days for chart data (30, 60, or 90)

Response

Returns daily noise reduction percentages

date
string
required

Date in ISO format

noiseReduction
number
required

Noise reduction percentage (0-100)

totalDetections
number
required

Total number of detections for the day

escalatedDetections
number
required

Number of escalated detections for the day