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

# Get the workspace's default agent billing plan

> The plan a customer lands on when nobody chose for them — what apply-default-plan applies. 404 when no plan is marked.



## OpenAPI

````yaml get /v1/agents/default-plan
openapi: 3.1.0
info:
  title: Hyperline API
  version: 0.0.0
servers:
  - url: https://api.hyperline.co
  - url: https://sandbox.api.hyperline.co
security: []
paths:
  /v1/agents/default-plan:
    get:
      tags:
        - Agents
      summary: Get the workspace's default agent billing plan
      description: >-
        The plan a customer lands on when nobody chose for them — what
        apply-default-plan applies. 404 when no plan is marked.
      operationId: getAgentDefaultPlan
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  plan_id:
                    type: string
                  auto_apply:
                    type: boolean
                required:
                  - plan_id
                  - auto_apply
        '404':
          description: No default plan is set
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                required:
                  - message
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT

````