GET
/
alerts
curl --request GET \
  --url https://api.fixa.dev/v1/alerts \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "alerts": [
    {
      "id": "<string>",
      "type": "latency",
      "details": {
        "lookbackPeriod": {
          "label": "<string>",
          "value": 123
        },
        "cooldownPeriod": {
          "label": "<string>",
          "value": 123
        },
        "lastAlerted": "2023-11-07T05:31:56Z",
        "percentile": "p50",
        "threshold": 123
      },
      "savedSearchId": "<string>",
      "slackNames": [],
      "ownerId": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json
Alerts retrieved successfully
success
boolean
required
alerts
object[]
required