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

# List Agency Companies

> Retrieve a list of all companies under the agency. Note: Requires Agency API Key.



## OpenAPI

````yaml GET /agency/company
openapi: 3.1.0
info:
  title: Outbox AI API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.getoutbox.ai
security: []
paths:
  /agency/company:
    get:
      summary: List Agency Companies
      description: >-
        Retrieve a list of all companies under the agency. Note: Requires Agency
        API Key.
      responses:
        '200':
          description: Companies retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AgencyCompanySummary'
        '401':
          description: Unauthorized - Invalid or missing agency API key
        '403':
          description: Forbidden - Requires agency admin access
      security:
        - AgencyApiKey: []
components:
  schemas:
    AgencyCompanySummary:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        email:
          type: string
        logo:
          type: string
          nullable: true
          description: Logo URL, null if not set
        active:
          type: boolean
  securitySchemes:
    AgencyApiKey:
      type: apiKey
      in: header
      name: Authorization
      description: Agency API Key

````