List available/coming-soon connectors, without a session
curl --request GET \
--url https://api.atako.ai/public/integrations/catalogimport requests
url = "https://api.atako.ai/public/integrations/catalog"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.atako.ai/public/integrations/catalog', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.atako.ai/public/integrations/catalog",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.atako.ai/public/integrations/catalog"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.atako.ai/public/integrations/catalog")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.atako.ai/public/integrations/catalog")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body[
{
"key": "<string>",
"name": "<string>",
"authType": "api_key",
"availability": "available",
"baseUrl": "<string>",
"logo": "<string>",
"description": "<string>",
"docsUrl": "<string>",
"keyHelp": "<string>",
"secretLabel": "<string>",
"configFields": [
{}
],
"oauthConfigured": true,
"apiKeyAlt": true,
"oauthSkipsConfig": true,
"companyWide": true,
"defaultGranted": true,
"nonDeletable": true,
"actions": [
{
"key": "<string>",
"scope": "<string>",
"description": "<string>"
}
]
}
]Public
List available/coming-soon connectors, without a session
Same catalog as GET /integrations/catalog. Read by the vitrine demo. Cached 5 min, public per-IP rate limit.
GET
/
public
/
integrations
/
catalog
List available/coming-soon connectors, without a session
curl --request GET \
--url https://api.atako.ai/public/integrations/catalogimport requests
url = "https://api.atako.ai/public/integrations/catalog"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.atako.ai/public/integrations/catalog', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.atako.ai/public/integrations/catalog",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.atako.ai/public/integrations/catalog"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.atako.ai/public/integrations/catalog")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.atako.ai/public/integrations/catalog")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body[
{
"key": "<string>",
"name": "<string>",
"authType": "api_key",
"availability": "available",
"baseUrl": "<string>",
"logo": "<string>",
"description": "<string>",
"docsUrl": "<string>",
"keyHelp": "<string>",
"secretLabel": "<string>",
"configFields": [
{}
],
"oauthConfigured": true,
"apiKeyAlt": true,
"oauthSkipsConfig": true,
"companyWide": true,
"defaultGranted": true,
"nonDeletable": true,
"actions": [
{
"key": "<string>",
"scope": "<string>",
"description": "<string>"
}
]
}
]Query Parameters
'fr' for French text fields, else English.
Response
200 - application/json
Available options:
api_key, oauth2, mcp, internal Available options:
available, coming_soon Connector-defined config field descriptors.
Native platform capability (e.g. 'projects'): its connection is a company-wide singleton, resolved lazily wherever needed — never manually connected.
Paired with companyWide: every agent of the company holds a virtual full grant on this connection until an explicit grant row (opt-out or adjustment) exists — see IntegrationGrant.isDefault.
The connection can't be disconnected — DELETE /integrations/connections/{id} refuses with connection_not_deletable.
Show child attributes
Show child attributes