Skip to main content
GET
/
anomaly_alerts
/
{anomaly_alert_token}
Get anomaly alert by token
curl --request GET \
  --url https://api.vantage.sh/v2/anomaly_alerts/{anomaly_alert_token} \
  --header 'Authorization: Bearer <token>'
{
  "token": "anmly_alrt_6056b98225236ece",
  "created_at": "2024-04-01T17:14:45Z",
  "alerted_at": "2024-04-01T17:14:45Z",
  "category": "Compute",
  "service": "AmazonEKS",
  "provider": "aws",
  "amount": "100.0",
  "previous_amount": "25.0",
  "seven_day_average": "10.0",
  "status": "active",
  "feedback": null,
  "cost_report_token": "rprt_bf0a30084fbf52c2"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

anomaly_alert_token
string
required

Response

AnomalyAlert model

token
string
created_at
string

The date and time, in UTC, the AnomalyAlert was created. ISO 8601 Formatted.

Example:

"2021-07-09T00:00:00Z"

alerted_at
string

The date and time, in UTC, the AnomalyAlert is sent. ISO 8601 Formatted.

Example:

"2021-07-09T00:00:00Z"

category
string

The category of the AnomalyAlert.

service
string

The provider service causing the AnomalyAlert.

provider
string

The provider of the service causing the AnomalyAlert.

amount
string

The amount observed.

previous_amount
string

The previous amount observed.

seven_day_average
string

The seven day average of the amount observed.

status
string

The status of the AnomalyAlert.

feedback
string

The user-provided feedback of why alert was ignored/archived.

resources
string[]

The names of the resources the AnomalyAlert was attributed to.

cost_report_token
string

The token of the Report associated with the AnomalyAlert.