Skip to main content
GET
/
v1
/
triggers
List triggers
curl --request GET \
  --url https://brew.new/api/v1/triggers \
  --header 'Authorization: Bearer <token>'
{
  "triggers": [
    {
      "triggerEventId": "tri_password_reset",
      "title": "Password Reset Requested",
      "provider": "brew_api",
      "status": "enabled",
      "payloadSchema": {
        "type": "object",
        "fields": [
          {
            "key": "email",
            "type": "string",
            "required": true
          }
        ]
      },
      "createdAt": "2026-04-08T12:34:56.789Z",
      "updatedAt": "2026-04-08T12:34:56.789Z"
    },
    {
      "triggerEventId": "clerk:org_123:brand_abc:user.created",
      "title": "Clerk: User Created",
      "provider": "clerk",
      "status": "enabled",
      "payloadSchema": {
        "type": "object",
        "fields": [
          {
            "key": "email",
            "type": "string",
            "required": true
          }
        ]
      },
      "createdAt": "2026-04-08T12:34:56.789Z",
      "updatedAt": "2026-04-08T12:34:56.789Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.brew.new/llms.txt

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

Authorizations

Authorization
string
header
default:Bearer brew_your_api_key
required

Send your Brew API key as Authorization: Bearer brew_xxx.

Query Parameters

triggerEventId
string
Required string length: 1 - 256

Response

List of trigger rows. Single-element array when ?triggerEventId=… matched a row.

triggers
object[]
required