---
title: "List integration capabilities"
method: GET
path: "/integrations/catalog"
tags: ["Integrations"]
---

# List integration capabilities

`GET /integrations/catalog`

Describes what each integration provider syncs, which events it emits and when, the subscriber attributes it writes, and which actions it supports. Works whether or not the provider is connected, so it can be used to compare providers before connecting one.

## Query parameters

- `provider` string
- `category` string

## Response `200`

Provider capabilities returned

- object
  - `success` boolean
  - `providers` IntegrationProviderCapability[]
    - `provider` string
    - `name` string
    - `category` 'payments' | 'ecommerce' | 'auth' | 'analytics' | 'ads' | 'affiliate' | 'cms' | 'developer'
    - `availability` 'available' | 'beta' | 'coming_soon' — A coming_soon provider appears in the dashboard picker but has no webhook handler yet, so it emits nothing.
    - `summary` string
    - `connectMethod` 'oauth' | 'api_key' | 'app_install' | 'plugin' | 'webhook'
    - `syncs` string[] — What the integration keeps in sync. Empty when it only pushes events as they happen.
    - `emits` object[] — Every event the provider can produce. Empty when it never triggers automations.
      - `event` string — Event name a sequence triggers on.
      - `when` string — The real-world moment that produces this event.
    - `writesAttributes` object[]
      - `key` string
      - `description` string
    - `actions` string[]
    - `connectFields` object[] — Fields POST /integrations/connect accepts for this provider. Present exactly when actions includes connect.
      - `key` 'apiKey' | 'webhookSecret' | 'providerAccountId' | 'settings' | 'historyImport'
      - `required` boolean
      - `secret` boolean — True when the value is a credential and must be handled as a secret.
      - `description` string
    - `notes` string[] — Caveats worth knowing before building on the provider.

## Other responses

- `401` — Unauthorized
- `404` — Unknown provider

---

[API](https://skmtc.net/sequenzy/apis/sequenzy-api.md) · [All operations](https://skmtc.net/sequenzy/apis/sequenzy-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sequenzy/sequenzy-api/versions/af1cf9620482/schema)
