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

# Get Workspace Settings

> Read the current workspace's settings (cap, etc).



## OpenAPI

````yaml /api-reference/openapi.json get /v1/workspace/settings
openapi: 3.1.0
info:
  description: >-
    Modular and extensible framework for building AI agents. This API requires
    JWT Bearer token authentication for most endpoints. Include your JWT token
    in the Authorization header. Public endpoints include /, /health, /docs,
    /redoc, and /openapi.json.
  title: AgentArea API
  version: 0.1.0
servers: []
security:
  - bearer: []
paths:
  /v1/workspace/settings:
    get:
      tags:
        - v1
        - protected
        - dashboard
      summary: Get Workspace Settings
      description: Read the current workspace's settings (cap, etc).
      operationId: get_workspace_settings_v1_workspace_settings_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkspaceSettingsResponse'
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  schemas:
    WorkspaceSettingsResponse:
      properties:
        monthly_cap_usd:
          anyOf:
            - type: number
            - type: 'null'
          title: Monthly Cap Usd
      required:
        - monthly_cap_usd
      title: WorkspaceSettingsResponse
      type: object
  securitySchemes:
    bearer:
      bearerFormat: JWT
      description: JWT Bearer token for authentication
      scheme: bearer
      type: http
    HTTPBearer:
      scheme: bearer
      type: http

````