API Reference / Catalogs
Catalogs
Catalog endpoints describe what triggers, actions, and destinations Converly supports, with the metadata you need to build a picker UI. They're public, so no API key is required, and they're rate limited per IP.
The trigger type object
type
string
The trigger type, e.g. form_submission.
display_label
string
Human-friendly label for the type.
category
string
Grouping for the UI, e.g. forms.
providers
array
Tool slugs that fire this trigger. Use one as integrationId on a flow.
filters
array
The filter fields this trigger supports, with types and labels.
Endpoints
GET/v1/trigger-types
curl https://app.converly.io/api/v1/trigger-types
200 OK
{
"data": [
{
"type": "form_submission",
"display_label": "Form submission",
"category": "forms",
"providers": ["gravity-forms", "typeform", "…"],
"filters": [
{ "key": "form_id", "type": "string",
"required": false, "label": "Form ID" }
]
}
]
}