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

# getStrategyValues

> Get current strategy value.



## OpenAPI

````yaml /openapi.yaml get /getStrategyValues
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:
  /getStrategyValues:
    get:
      tags:
        - Strategies
      summary: getStrategyValues
      description: Get current strategy value.
      operationId: getStrategyValues
      parameters:
        - $ref: '#/components/parameters/optional_api_token'
        - name: strategy_id[]
          in: query
          required: true
          schema:
            type: array
            description: Array of strategy IDs.
            maxItems: 100
            items:
              $ref: '#/components/schemas/strategy_id'
      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:
                        strategy_id:
                          $ref: '#/components/schemas/strategy_id'
                        strategy_value:
                          type: string
                          description: >-
                            Normalized strategy value. Convert before displaying
                            user-facing USD values.
              examples:
                '200':
                  value:
                    success: true
                    response:
                      - strategy_id: PKw1UvPIoGMARkXTXzYk6
                        strategy_value: '1.00000000000000000'
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
components:
  parameters:
    optional_api_token:
      in: header
      name: Authorization
      description: User API token.
      schema:
        type: string
        format: JWT
  schemas:
    strategy_id:
      type: string
      description: AlphaInsider strategy identifier.
    success:
      type: boolean
      description: True when the request succeeded.
  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.
    '401':
      description: Authentication failed.
      content:
        application/json:
          schema:
            type: object
            properties:
              success:
                type: boolean
                description: False when the request failed.
              response:
                type: string
                description: Error message.
          examples:
            '401':
              value:
                success: false
                response: Authentication failed.

````