Get User Integrations
curl --request GET \
--url https://api.klavis.ai/user/{userId}/integrations \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.klavis.ai/user/{userId}/integrations"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.klavis.ai/user/{userId}/integrations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.klavis.ai/user/{userId}/integrations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"integrations": [
{
"name": "Affinity",
"is_authenticated": true
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}User
Get User Integrations
Get all available integrations (MCP server names) by user ID. Returns a list of integration names and their authentication status.
GET
/
user
/
{userId}
/
integrations
Get User Integrations
curl --request GET \
--url https://api.klavis.ai/user/{userId}/integrations \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.klavis.ai/user/{userId}/integrations"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.klavis.ai/user/{userId}/integrations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.klavis.ai/user/{userId}/integrations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"integrations": [
{
"name": "Affinity",
"is_authenticated": true
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}