Skip to main content
GET
/
v1
/
alerts
Get active alerts
curl --request GET \
  --url https://api.us.poly.ai/v1/alerts \
  --header 'X-API-KEY: <api-key>'
{
  "data": [
    {
      "alert_rule_id": "ar_0Kx4mNpQ8rWvYb2dFgHjLs",
      "name": "<string>",
      "threshold_value": 123,
      "since": "2023-11-07T05:31:56Z",
      "project_id": "<string>",
      "last_evaluated_at": "2023-11-07T05:31:56Z",
      "current_value": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.poly.ai/llms.txt

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

Authorizations

X-API-KEY
string
header
required

An API key is a token that you provide when making API calls. Include the token in a header parameter called X-API-KEY.

Query Parameters

project_id
string

Filter by project ID

metric
enum<string>

Filter by metric Metric to monitor.

Available options:
turn_latency_p50,
turn_latency_p95,
api_errors,
function_errors,
call_crashes,
call_volume

Response

Active alerts retrieved successfully.

Every alert rule currently in the firing state.

data
object[]
required
Last modified on June 1, 2026