Skip to content

List installed integrations

GET
/integrations
curl --request GET \
--url http://localhost:8000/api/v1/integrations \
--header 'Authorization: Bearer <token>'

Successful response

Media type application/json
object
data
Array<object>
object
key
string
name
string
description
string
nullable
category
string
icon
string
nullable
feature_key
string
nullable
configured
boolean
entitled
boolean
ui

Where and how this integration surfaces in the client. Null when the integration declares no UI.

object
Example generated
{
"data": [
{
"key": "example",
"name": "example",
"description": "example",
"category": "example",
"icon": "example",
"feature_key": "example",
"configured": true,
"entitled": true,
"ui": {}
}
]
}

Unauthorized