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

# Get Agency Settings

> Retrieve agency settings including admins and pending invites. Note: Requires Agency API Key.



## OpenAPI

````yaml GET /agency
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:
    get:
      summary: Get Agency Settings
      description: >-
        Retrieve agency settings including admins and pending invites. Note:
        Requires Agency API Key.
      responses:
        '200':
          description: Agency settings retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgencySettings'
        '401':
          description: Unauthorized - Invalid or missing agency API key
        '403':
          description: Forbidden - Requires agency admin access
      security:
        - AgencyApiKey: []
components:
  schemas:
    AgencySettings:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        email:
          type: string
        logo:
          type: string
          nullable: true
          description: Logo URL, null if not set
        address:
          type: object
          properties:
            address:
              type: string
            city:
              type: string
            state:
              type: string
            country:
              type: string
            zip_code:
              type: string
        api_key:
          type: string
        admins:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              full_name:
                type: string
              email:
                type: string
        invites:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              email:
                type: string
  securitySchemes:
    AgencyApiKey:
      type: apiKey
      in: header
      name: Authorization
      description: Agency API Key

````