curl --request GET \
--url https://api.botpress.cloud/v1/admin/hub/integrations \
--header 'Authorization: Bearer <token>'{
"integrations": [
{
"id": "<string>",
"name": "<string>",
"version": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"title": "<string>",
"description": "<string>",
"iconUrl": "<string>",
"public": true,
"visibility": "public",
"verificationStatus": "unapproved",
"ownerWorkspace": {
"id": "<string>",
"handle": "<string>",
"name": "<string>"
},
"meta": {
"installs": 123,
"views": 123
},
"matchedOn": {
"name": true,
"title": true,
"description": true,
"actions": [
"<string>"
],
"interfaces": [
"<string>"
]
}
}
],
"meta": {
"nextToken": "<string>"
}
}List public integration
curl --request GET \
--url https://api.botpress.cloud/v1/admin/hub/integrations \
--header 'Authorization: Bearer <token>'{
"integrations": [
{
"id": "<string>",
"name": "<string>",
"version": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"title": "<string>",
"description": "<string>",
"iconUrl": "<string>",
"public": true,
"visibility": "public",
"verificationStatus": "unapproved",
"ownerWorkspace": {
"id": "<string>",
"handle": "<string>",
"name": "<string>"
},
"meta": {
"installs": 123,
"views": 123
},
"matchedOn": {
"name": true,
"title": true,
"description": true,
"actions": [
"<string>"
],
"interfaces": [
"<string>"
]
}
}
],
"meta": {
"nextToken": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Whether the client supports bots with multiple instances of the same integration. Set to "true" to receive integration instances keyed by their alias instead of their id. This header will be removed in the future, and the API will always return multiple instances keyed by alias.
Provide the meta.nextToken value provided in the last API response to retrieve the next page of results
Maximum number of results to return per page
Integration Name
Integration version. Either a semver version or tag "latest"
Filter integrations by implemented interface ID
Filter integrations by implemented interface name (strict match)
Bot ID. Required when filtering for installed integrations
Filter integrations by verification status
unapproved, pending, approved, rejected Search integrations by name, description, actions, and interfaces. Responses include a matchedOn field indicating which fields matched the search.
Sort integrations by field
popularity, name, createdAt, updatedAt, installCount Sort direction (asc or desc)
asc, desc Was this page helpful?