Skip to main content
GET
/
v1
/
analytics
/
trigger-instances
Get fired trigger events
curl --request GET \
  --url https://brew.new/api/v1/analytics/trigger-instances \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "triggerInstanceId": "tin_8f2k",
      "source": "api",
      "provider": "brew_api",
      "triggerEventId": "tri_signup",
      "state": "processed",
      "matchedAutomationIds": [
        "auto_abc"
      ],
      "automationRunIds": [
        "run_01HZ"
      ],
      "attempts": 1,
      "receivedAt": "2026-04-08T12:34:56.789Z",
      "processedAt": "2026-04-08T12:34:57.100Z"
    }
  ],
  "pagination": {
    "limit": 100,
    "cursor": null,
    "hasMore": false
  }
}

Authorizations

Authorization
string
header
default:Bearer brew_your_api_key
required

Send your Brew API key as Authorization: Bearer brew_xxx.

Query Parameters

triggerInstanceId
string

Fetch a single fired event by id (detail mode → { data: [row] }). Omit to list.

Required string length: 1 - 64
triggerEventId
string
Required string length: 1 - 256
limit
integer

Page size (1–100). Defaults to 100.

Required range: 1 <= x <= 100
cursor
string

Opaque pagination cursor echoed from the previous page’s pagination.cursor. Omit for the first page.

Required string length: 1 - 512

Response

A page of fired trigger-event instances (list mode), or { data: [row] } (detail mode).

data
object[]
required
pagination
object