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

# Indicator assistant availability

> Tells the builder page whether the AI assistant is enabled on this environment so it can show or hide the chat panel. Costs nothing and is safe to call on page load.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/indicator-builder/status
openapi: 3.0.0
info:
  title: Hyperprop Platform API
  version: 1.0.0
  description: >-
    REST API for the Hyperprop Trading Platform — provision evaluation and
    funded trading accounts, manage traders and plans, react to account
    lifecycle events via signed webhooks, and reconcile billing. Built for prop
    firms integrating from their own backend.


    Authentication, quick start, error handling, idempotency, pagination, custom
    metadata, webhooks, and the MCP connector are documented at
    https://docs.hyperprop.com.
  x-logo:
    url: https://app.hyperprop.com/logo-icon.svg
    altText: Hyperprop
    href: https://hyperprop.com
servers:
  - url: https://api.hyperprop.com/platform
    description: Production
security: []
tags:
  - name: Authentication
    description: >-
      User authentication - signup, signin, signout, password reset, email
      verification, OAuth, and MFA
  - name: User
    description: >-
      User account management - profile, notifications, agreements, dismissals,
      and audit logs. Requires Bearer token.
  - name: Organization
    description: >-
      Organization management - profile, team, trading accounts, plans, and
      rules. Supports **dual authentication**: Bearer JWT token (dashboard
      users) OR X-API-Key (programmatic access).
  - name: Market Data
    description: CME futures contracts and market data. Requires Bearer token.
  - name: Indicator Builder
    description: >-
      AI-assisted authoring of custom Hyperprop Script indicators for the web
      terminal. Requires Bearer token.
  - name: System
    description: System endpoints - health checks and connectivity
paths:
  /v1/indicator-builder/status:
    get:
      tags:
        - Indicator Builder
      summary: Indicator assistant availability
      description: >-
        Tells the builder page whether the AI assistant is enabled on this
        environment so it can show or hide the chat panel. Costs nothing and is
        safe to call on page load.
      operationId: getV1IndicatorbuilderStatus
      responses:
        '200':
          description: Availability returned
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Model32'
        '401':
          description: Authentication required
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Model9'
components:
  schemas:
    Model32:
      type: object
      properties:
        success:
          type: boolean
          example: true
        data:
          $ref: '#/components/schemas/Model31'
    Model9:
      type: object
      properties:
        success:
          type: boolean
          description: Always false on errors
          example: false
        statusCode:
          type: number
          example: 401
        error:
          type: string
          example: Unauthorized
        message:
          type: string
          example: Authentication required
        code:
          type: string
          description: Machine-readable error code — switch on this, not on message text
          example: UNAUTHORIZED
    Model31:
      type: object
      properties:
        available:
          type: boolean
          example: true

````

## Related topics

- [Ask the indicator assistant](/platform-api/indicator-builder/ask-the-indicator-assistant.md)
- [Ask the indicator assistant (streaming)](/platform-api/indicator-builder/ask-the-indicator-assistant-streaming.md)
- [Hyperprop Script: build indicators (agent recipe)](/guides/hyperprop-script.md)
- [Changelog](/changelog.md)
- [MCP connector (AI agents)](/guides/mcp-connector.md)
