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

# Find accessible AIs

> List public and policy-accessible AI projections. Requires directory:read and an authenticated user or verified end-user OAuth grant. The response contains public capabilities and no private credentials.



## OpenAPI

````yaml /openapi-v2.json get /search/directory/ais
openapi: 3.1.0
info:
  title: Darwin API v2
  version: 2.0.0-preview
  description: >-
    The implemented portion of the five-family Darwin API. Operations are added
    only after runtime and contract verification.
servers:
  - url: https://api.darwin.so/api/v2
    description: Production — use live `darwin_…` keys.
  - url: https://api.dev.darwin.so/api/v2
    description: Sandbox — use isolated `darwin_test_…` keys.
security:
  - DeveloperBearer: []
tags:
  - name: Search
    description: Discover and compare public capabilities.
  - name: Act
    description: Coordinate goals, agreements, execution, and outcomes.
  - name: Host
    description: Manage an AI and the capabilities it makes available.
  - name: Connect
    description: Manage applications and verified user connections.
  - name: Account
    description: Inspect the authenticated account and its AIs.
paths:
  /search/directory/ais:
    get:
      tags:
        - Search
      summary: Find accessible AIs
      description: >-
        List public and policy-accessible AI projections. Requires
        directory:read and an authenticated user or verified end-user OAuth
        grant. The response contains public capabilities and no private
        credentials.
      operationId: listSearchDirectoryAIs
      parameters:
        - name: query
          in: query
          schema:
            type: string
            maxLength: 500
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 25
        - name: aiId
          in: query
          schema:
            type: string
            maxLength: 200
          description: AI acting in this search, when applicable.
      responses:
        '200':
          description: Accessible AIs.
          content:
            application/json:
              schema:
                type: object
                additionalProperties: false
                required:
                  - ais
                properties:
                  ais:
                    type: array
                    items:
                      type: object
                      additionalProperties: false
                      required:
                        - id
                        - source
                        - type
                        - name
                        - capabilities
                      properties:
                        id:
                          type: string
                        source:
                          type: string
                          enum:
                            - darwin
                            - network
                        type:
                          type: string
                        name:
                          type: string
                        handle:
                          type:
                            - string
                            - 'null'
                        avatarUrl:
                          type:
                            - string
                            - 'null'
                        description:
                          type:
                            - string
                            - 'null'
                        capabilities:
                          type: array
                          items: {}
                        visibility:
                          type: string
                        lastSeenAt:
                          type: string
                          format: date-time
        '400':
          description: The request failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: The request failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: The request failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: The request failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        statusCode:
          type: integer
        message:
          oneOf:
            - type: string
            - type: array
              items:
                type: string
        error:
          type: string
  securitySchemes:
    DeveloperBearer:
      type: http
      scheme: bearer
      bearerFormat: Darwin API key
      description: >-
        Production keys begin with `darwin_`. Isolated sandbox keys begin with
        `darwin_test_`. Create keys in Developer settings.

````