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

# getAccountTiers

> Get all account subscription tiers.



## OpenAPI

````yaml /openapi.yaml get /getAccountTiers
openapi: 3.1.0
info:
  title: AlphaInsider
  version: '1.0'
  description: >-
    The official API and websocket documentation for
    [AlphaInsider.com](https://alphainsider.com/)
servers:
  - url: https://alphainsider.com/api
security: []
tags:
  - name: Introduction
  - name: Authentication
  - name: Users
  - name: Strategies
  - name: Subscriptions
  - name: Payments
  - name: Withdrawals
  - name: Timelines
  - name: Stocks
  - name: Trades
  - name: Webhooks
  - name: Bots
  - name: Websockets
paths:
  /getAccountTiers:
    get:
      tags:
        - Subscriptions
      summary: getAccountTiers
      description: Get all account subscription tiers.
      operationId: getAccountTiers
      responses:
        '200':
          description: Request was successful.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    $ref: '#/components/schemas/success'
                  response:
                    type: array
                    description: >-
                      Endpoint-specific response payload, or an error message
                      when `success` is false.
                    items:
                      type: object
                      properties:
                        product_id:
                          type: string
                          description: Billing product identifier.
                        type:
                          type: string
                          description: Type or category for this object.
                        timeframe:
                          $ref: '#/components/schemas/timeframe'
                        level:
                          type: integer
                          description: Subscription tier level.
                        name:
                          type: string
                          description: Display name.
                        apiTokenExpire:
                          type: integer
                          description: API token expiration period in milliseconds.
                        limits:
                          type: object
                          description: Account or tier operational limits.
                          properties:
                            new_order:
                              type: integer
                              description: >-
                                Maximum successful `/newOrder` requests per day
                                per strategy.
                            max_strategies:
                              type: integer
                              description: >-
                                Maximum number of strategies the account can
                                create.
                            max_subscriptions:
                              type: integer
                              description: Maximum number of strategy subscriptions.
                            max_bots:
                              type: integer
                              description: Maximum number of bots.
                        price:
                          type: integer
                          description: Price or execution price, depending on context.
              examples:
                '200':
                  value:
                    success: true
                    response:
                      - product_id: 7wswTAd1xbDAEQkPhbBn6
                        type: standard
                        timeframe: month
                        level: 0
                        name: Standard Account Subscription
                        apiTokenExpire: 31536000000
                        limits:
                          new_order: 50
                          max_strategies: 5
                          max_subscriptions: 10
                          max_bots: 0
                        price: 0
                      - product_id: qkV9qPfpxr4wWMaZKprdI
                        type: pro
                        timeframe: month
                        level: 1
                        name: Pro Account Monthly Subscription
                        apiTokenExpire: 31536000000
                        limits:
                          new_order: 500
                          max_strategies: 50
                          max_subscriptions: 100
                          max_bots: 2
                        price: 5000
                      - product_id: tlEuVShrHFFJtceRjEYxm
                        type: pro
                        timeframe: year
                        level: 2
                        name: Pro Account Yearly Subscription
                        apiTokenExpire: 31536000000
                        limits:
                          new_order: 500
                          max_strategies: 50
                          max_subscriptions: 100
                          max_bots: 2
                        price: 52800
                      - product_id: x70U0yrF8y1FcalgGutQe
                        type: premium
                        timeframe: month
                        level: 3
                        name: Premium Account Monthly Subscription
                        apiTokenExpire: 31536000000
                        limits:
                          new_order: 5000
                          max_strategies: 500
                          max_subscriptions: 1000
                          max_bots: 4
                        price: 10000
                      - product_id: 7fhHPXozPsaIVnXLeuTrD
                        type: premium
                        timeframe: year
                        level: 4
                        name: Premium Account Yearly Subscription
                        apiTokenExpire: 31536000000
                        limits:
                          new_order: 5000
                          max_strategies: 500
                          max_subscriptions: 1000
                          max_bots: 4
                        price: 105600
        '400':
          $ref: '#/components/responses/400'
components:
  schemas:
    success:
      type: boolean
      description: True when the request succeeded.
    timeframe:
      type: string
      description: Time window used for ranking or performance data.
      enum:
        - day
        - week
        - month
        - year
        - five_year
      default: month
  responses:
    '400':
      description: Request failed.
      content:
        application/json:
          schema:
            type: object
            properties:
              success:
                type: boolean
                description: False when the request failed.
              response:
                type: string
                description: Error message.
          examples:
            '400':
              value:
                success: false
                response: Request failed.

````