Skip to main content
GET
/
v0
/
alerts
/
{alertId}
Get alert
curl --request GET \
  --url https://api.formo.so/v0/alerts/{alertId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "alrt_4f8e2c1a9b3d4e5f",
  "project_id": "proj_abc123",
  "name": "Daily revenue drop",
  "trigger_type": "event",
  "status": "active",
  "trigger_filters": [
    {
      "name": "event",
      "operator": "equals",
      "value": "transaction"
    },
    {
      "name": "revenue",
      "operator": "less_than",
      "value": "1000",
      "numericThreshold": "sum"
    }
  ],
  "recipient": [
    {
      "type": "email",
      "value": [
        "alerts@myapp.com"
      ]
    },
    {
      "type": "slack",
      "value": [
        "C0123456789"
      ]
    }
  ],
  "has_secret": false,
  "created_at": "2026-04-12T09:32:18.000Z",
  "updated_at": "2026-04-25T14:01:55.000Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.formo.so/llms.txt

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

Authorizations

Authorization
string
header
required

Workspace API key (e.g. formo_xxx). Create one in the Formo dashboard under Team Settings > API Keys.

Path Parameters

alertId
string
required

Response

200 - application/json

Alert details

id
string
required
name
string
required
trigger_type
enum<string>
required
Available options:
event,
user
status
enum<string>
required
Available options:
active,
inactive
project_id
string
required
created_at
string<date-time>
updated_at
string<date-time> | null
trigger_filters
object[]
recipient
object[]
has_secret
boolean