> ## Documentation Index
> Fetch the complete documentation index at: https://docs.corti.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Registry Experts

> This endpoint retrieves the experts registry, which contains information about all available experts that can be referenced when creating agents through the AgentsCreateExpertReference schema.




## OpenAPI

````yaml /agentic/auto-generated-openapi.yml get /agents/registry/experts
openapi: 3.1.1
info:
  title: Corti Agent API
  version: 0.1.0
  description: >
    The Corti Agent API allows users to interact with the Corti Agent, enabling
    the creation and management of threads, sending messages, and receiving
    responses.
servers: []
security: []
paths:
  /agents/registry/experts:
    get:
      tags:
        - Agents
      summary: List Registry Experts
      description: >
        This endpoint retrieves the experts registry, which contains information
        about all available experts that can be referenced when creating agents
        through the AgentsCreateExpertReference schema.
      operationId: agents_get_registry_experts
      parameters:
        - $ref: '#/components/parameters/Tenant-Name'
        - $ref: '#/components/parameters/AgentsLimit'
        - $ref: '#/components/parameters/AgentsOffset'
      responses:
        '200':
          description: Agent registry retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentsRegistryExpertsResponse'
        '400':
          description: >
            The request could not be processed, possibly due to missing required
            fields or invalid data.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentsErrorResponse'
        '401':
          description: |
            Authentication is required to access this endpoint.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentsErrorResponse'
        '422':
          description: Request validation failed, invalid input.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentsValidationErrorResponse'
      x-codeSamples:
        - lang: csharp
          label: C# .NET SDK
          source: |
            using Corti;

            var client = new CortiClient(
                "TENANT_NAME",
                CortiClientEnvironment.Eu,
                new CortiClientAuth.ClientCredentials("client_id", "client_secret")
            );
            await client.Agents.GetRegistryExpertsAsync(
                new AgentsGetRegistryExpertsRequest { Limit = 100, Offset = 0 }
            );
        - lang: javascript
          label: JavaScript SDK
          source: |
            import { CortiClient, CortiEnvironment } 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
            });
components:
  parameters:
    Tenant-Name:
      name: Tenant-Name
      in: header
      description: >-
        Identifies a distinct entity within Corti's multi-tenant system. Ensures
        correct routing and authentication of the request.
      required: true
      example: base
      schema:
        type: string
        description: >-
          Identifies a distinct entity within Corti's multi-tenant system.
          Ensures correct routing and authentication of the request.
        example: base
    AgentsLimit:
      name: limit
      in: query
      description: >
        The maximum number of items to return. If not specified, a default
        number of items will be returned.
      required: false
      schema:
        type: integer
        description: >
          The maximum number of items to return. If not specified, a default
          number of items will be returned.
        example: 100
    AgentsOffset:
      name: offset
      in: query
      description: >
        The number of items to skip before starting to collect the result set.
        Default is 0.
      required: false
      schema:
        type: integer
        description: >
          The number of items to skip before starting to collect the result set.
          Default is 0.
        example: 0
  schemas:
    AgentsRegistryExpertsResponse:
      type: object
      properties:
        experts:
          type: array
          items:
            $ref: '#/components/schemas/AgentsRegistryExpert'
          description: |
            A list of all available experts in the experts registry.
    AgentsErrorResponse:
      type: object
      required:
        - code
        - description
      properties:
        code:
          type: string
          description: |
            A machine-readable error code that identifies the type of error.
        description:
          type: string
          description: >
            A human-readable description of the error, providing more context
            about what went wrong.
        howToFix:
          type: string
          description: |
            A human-readable message describing how to fix the issue.
        details:
          type: object
          description: |
            An optional object containing additional details about the error.
          additionalProperties: true
        cause:
          type: object
          description: >
            An optional object containing the cause of the error, following the
            same structure as the parent error response.
          additionalProperties: true
    AgentsValidationErrorResponse:
      allOf:
        - $ref: '#/components/schemas/AgentsErrorResponse'
        - type: object
          properties:
            detail:
              type: array
              title: Detail
              items:
                $ref: '#/components/schemas/AgentsValidationError'
    AgentsRegistryExpert:
      type: object
      required:
        - name
        - description
      properties:
        name:
          type: string
          description: The name of the expert.
          pattern: ^[a-zA-Z0-9_\.-]+$
        displayName:
          type: string
          description: An optional human-readable display name for the expert.
        displayDescription:
          type: string
          description: An optional human-readable display description for the expert.
        description:
          type: string
          description: A brief description of the expert's capabilities.
        mcpServers:
          type: array
          description: >
            A list of MCP servers the expert can call, including their
            authorization types.
          items:
            $ref: '#/components/schemas/AgentsRegistryMCPServer'
        configSchema:
          type: object
          description: >
            Optional JSON Schema describing the configuration this expert
            accepts. When present, callers may supply a matching `config` object
            on `AgentsCreateExpertReference`; values are deep-merged with schema
            defaults and validated against this schema.
          additionalProperties: true
    AgentsValidationError:
      properties:
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        reason:
          type: string
          title: Reason
        howToFix:
          type: string
          title: How to Fix
        errors:
          type: array
          items:
            type: object
            properties:
              location:
                type: string
                title: Location
              reason:
                type: string
                title: Reason
          title: Errors
      type: object
      required:
        - msg
        - type
        - reason
        - howToFix
      title: AgentsValidationError
    AgentsRegistryMCPServer:
      type: object
      required:
        - name
        - authorizationType
      properties:
        name:
          type: string
          description: Name of the MCP server.
        authorizationType:
          type: string
          description: Type of authorization used by the MCP server.
          enum:
            - none
            - bearer
            - inherit
            - oauth2.0

````