GET
/
v2
/
alerts
/
{alert_id}
Get one market alert
curl --request GET \
  --url https://api-v2.watchcollect.com/v2/alerts/{alert_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "enabled": true,
  "filters": {},
  "created_at_ms": 123,
  "updated_at_ms": 123,
  "view_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_by": "<string>",
  "updated_by": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

alert_id
string<uuid>
required

Response

Alert detail.

id
string<uuid>
required
name
string
required
enabled
boolean
required
filters
object
required

Alert filter object. resource: "messages" matches canonical message text without waiting for classification; resource: "watch_listings" matches classified market listings. Other keys reuse saved-view filters.

created_at_ms
integer<int64>
required
updated_at_ms
integer<int64>
required
view_id
string<uuid> | null
created_by
string | null
updated_by
string | null