List an agent's connectors
curl --request GET \
--url https://api.{env}.corti.app/v2/agentic/agents/{agentId}/connectors \
--header 'Authorization: Bearer <token>' \
--header 'Tenant-Name: <api-key>'const options = {
method: 'GET',
headers: {Authorization: 'Bearer <token>', 'Tenant-Name': '<api-key>'}
};
fetch('https://api.{env}.corti.app/v2/agentic/agents/{agentId}/connectors', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));using RestSharp;
var options = new RestClientOptions("https://api.{env}.corti.app/v2/agentic/agents/{agentId}/connectors");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Tenant-Name", "<api-key>");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);import requests
url = "https://api.{env}.corti.app/v2/agentic/agents/{agentId}/connectors"
headers = {
"Authorization": "Bearer <token>",
"Tenant-Name": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.{env}.corti.app/v2/agentic/agents/{agentId}/connectors",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Tenant-Name: <api-key>"
],
]);
$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.{env}.corti.app/v2/agentic/agents/{agentId}/connectors"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Tenant-Name", "<api-key>")
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.{env}.corti.app/v2/agentic/agents/{agentId}/connectors")
.header("Authorization", "Bearer <token>")
.header("Tenant-Name", "<api-key>")
.asString();{
"connectors": [
{
"id": "con.0192f4c8-7baf-7083-a46f-81d2bd70cf95",
"type": "registry",
"name": "@dedalus/coding-expert",
"enabled": true
}
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"howToFix": "<string>",
"details": {
"validationErrors": [
{
"field": "<string>",
"reason": "<string>"
}
]
},
"requestId": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"howToFix": "<string>",
"details": {
"validationErrors": [
{
"field": "<string>",
"reason": "<string>"
}
]
},
"requestId": "<string>"
}
}Connectors
List an agent's connectors
GET
/
v2
/
agentic
/
agents
/
{agentId}
/
connectors
List an agent's connectors
curl --request GET \
--url https://api.{env}.corti.app/v2/agentic/agents/{agentId}/connectors \
--header 'Authorization: Bearer <token>' \
--header 'Tenant-Name: <api-key>'const options = {
method: 'GET',
headers: {Authorization: 'Bearer <token>', 'Tenant-Name': '<api-key>'}
};
fetch('https://api.{env}.corti.app/v2/agentic/agents/{agentId}/connectors', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));using RestSharp;
var options = new RestClientOptions("https://api.{env}.corti.app/v2/agentic/agents/{agentId}/connectors");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Tenant-Name", "<api-key>");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);import requests
url = "https://api.{env}.corti.app/v2/agentic/agents/{agentId}/connectors"
headers = {
"Authorization": "Bearer <token>",
"Tenant-Name": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.{env}.corti.app/v2/agentic/agents/{agentId}/connectors",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Tenant-Name: <api-key>"
],
]);
$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.{env}.corti.app/v2/agentic/agents/{agentId}/connectors"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Tenant-Name", "<api-key>")
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.{env}.corti.app/v2/agentic/agents/{agentId}/connectors")
.header("Authorization", "Bearer <token>")
.header("Tenant-Name", "<api-key>")
.asString();{
"connectors": [
{
"id": "con.0192f4c8-7baf-7083-a46f-81d2bd70cf95",
"type": "registry",
"name": "@dedalus/coding-expert",
"enabled": true
}
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"howToFix": "<string>",
"details": {
"validationErrors": [
{
"field": "<string>",
"reason": "<string>"
}
]
},
"requestId": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"howToFix": "<string>",
"details": {
"validationErrors": [
{
"field": "<string>",
"reason": "<string>"
}
]
},
"requestId": "<string>"
}
}Authorizations
OAuth 2.0 / OIDC bearer token.
The tenant the request operates within.
Path Parameters
Agent identifier (prefixed UUIDv7).
Agent identifier. Accepts agt.<uuidv7> or a bare UUIDv7 on input; always returned prefixed.
Pattern:
^(agt\.)?[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$Example:
"agt.0192f4c8-2c5a-7b3e-9f1a-3c8d6e2b7a40"
Response
The agent's connectors.
An agent's attached connectors.
Connectors attached to the agent.
A connector attached to an agent, discriminated by type.
- Option 1
- Option 2
- Option 3
- Option 4
- Option 5
Show child attributes
Show child attributes
Example:
[
{
"id": "con.0192f4c8-7baf-7083-a46f-81d2bd70cf95",
"type": "registry",
"name": "@dedalus/coding-expert",
"enabled": true
}
]
Was this page helpful?
⌘I