Get Account Integrations
curl --request GET \
--url https://app.fliqr.ai/api/accounts/integrations \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'GET', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/accounts/integrations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/accounts/integrations"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"openai": {
"active": true
},
"gemini": {
"active": false
},
"claude": {
"active": true
},
"xai": {
"active": false
},
"deepseek": {
"active": true
},
"google_sheets": {
"active": false
},
"email": {
"active": true
}
}Accounts
Get account integrations
Get all integrations from a business account.
GET
/
accounts
/
integrations
Get Account Integrations
curl --request GET \
--url https://app.fliqr.ai/api/accounts/integrations \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'GET', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/accounts/integrations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/accounts/integrations"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"openai": {
"active": true
},
"gemini": {
"active": false
},
"claude": {
"active": true
},
"xai": {
"active": false
},
"deepseek": {
"active": true
},
"google_sheets": {
"active": false
},
"email": {
"active": true
}
}Authorizations
API access token from your Fliqr AI dashboard (Settings → API). Send it in the X-ACCESS-TOKEN header on every request.
Response
200 - application/json
List of available integrations and their status
Was this page helpful?
⌘I