> ## 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.

# List AIs



## OpenAPI

````yaml /openapi-v2.json get /host/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:
  /host/ais:
    get:
      tags:
        - Host
      summary: List AIs
      operationId: listAis
      responses:
        '200':
          description: Accessible personal and business AIs.
          content:
            application/json:
              schema:
                type: object
                required:
                  - ais
                properties:
                  ais:
                    type: array
                    items:
                      $ref: '#/components/schemas/AI'
        '400':
          description: The request was invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: The bearer key is missing, invalid, expired, or revoked.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: The principal does not have the required scope or resource access.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: The resource was not found for this principal.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    AI:
      type: object
      required:
        - id
        - type
        - name
        - visibility
        - status
      properties:
        id:
          type: string
        type:
          type: string
          enum:
            - personal
            - business
        name:
          type: string
        handle:
          type:
            - string
            - 'null'
        avatarUrl:
          type:
            - string
            - 'null'
          format: uri
        description:
          type:
            - string
            - 'null'
        links:
          type: array
          items:
            type: object
            additionalProperties: true
        capabilities:
          type: array
          items:
            type: object
            additionalProperties: true
        location:
          type: object
          additionalProperties: true
        organization:
          type: object
          additionalProperties: true
        visibility:
          $ref: '#/components/schemas/Visibility'
        accessPolicyId:
          type:
            - string
            - 'null'
        status:
          type: string
        profile:
          type: object
          additionalProperties: true
        role:
          type:
            - string
            - 'null'
          enum:
            - owner
            - admin
            - member
    Error:
      type: object
      properties:
        statusCode:
          type: integer
        message:
          oneOf:
            - type: string
            - type: array
              items:
                type: string
        error:
          type: string
    Visibility:
      type: string
      enum:
        - PUBLIC
        - RESTRICTED
        - PRIVATE
  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.

````