Skip to main content
GET
/
agents
/
registry
/
experts
Javascript SDK (Beta)
import { CortiEnvironment, CortiClient } from "@corti/sdk";

const client = new CortiClient({
    environment: CortiEnvironment.Eu,
    auth: {
        clientId: "YOUR_CLIENT_ID",
        clientSecret: "YOUR_CLIENT_SECRET"
    },
    tenantName: "YOUR_TENANT_NAME"
});
await client.agents.getRegistryExperts({
    limit: 100,
    offset: 0
});
{
  "experts": [
    {
      "name": "<string>",
      "description": "<string>"
    }
  ]
}

Headers

Tenant-Name
string
required

Identifies a distinct entity within Corti's multi-tenant system. Ensures correct routing and authentication of the request.

Example:

"copiloteu"

Query Parameters

limit
integer

The maximum number of items to return. If not specified, a default number of items will be returned.

Example:

100

offset
integer

The number of items to skip before starting to collect the result set. Default is 0.

Example:

0

Response

Agent registry retrieved successfully.

experts
object[]

A list of all available experts in the experts registry.