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

# Get a strategy's performance



## OpenAPI

````yaml /api-reference/openapi.json get /strategies/{strategyId}/performance
openapi: 3.0.0
info:
  title: Noonum API
  version: 1.0.0
  contact:
    name: Noonum Support
    email: hello@noonum.com
  description: >
    Create, read, update, and delete your own investment strategies, browse
    public premade strategies, run semantic search, and call supporting utility
    endpoints.
servers:
  - url: https://api.noonum.ai/v1
security:
  - bearerAuth: []
tags:
  - name: UserStrategies
    description: Create, read, update, and delete your own investment strategies.
  - name: PremadeStrategies
    description: Read public premade strategies and find the ones closest to an objective.
  - name: Helper
    description: >-
      Supporting endpoints for company lookup, objective editing, and health
      checks.
  - name: Benchmarks
    description: Read benchmark data.
  - name: Portfolios
    description: Create, read, update, and delete your portfolios.
  - name: Backtest
    description: Backtest a portfolio without saving it.
paths:
  /strategies/{strategyId}/performance:
    parameters:
      - name: strategyId
        in: path
        required: true
        schema:
          type: string
        description: UUID of the user strategy
      - name: top
        in: query
        required: false
        schema:
          type: integer
          default: 30
      - name: min_market_cap
        in: query
        required: false
        schema:
          type: integer
          default: 0
    get:
      tags:
        - UserStrategies
      summary: Get a strategy's performance
      operationId: app.api.v1.strategies.strategies_performance
      responses:
        '200':
          description: Performance statistics and value over time for the strategy.
          content:
            application/json:
              schema:
                type: object
                properties:
                  metadata:
                    type: object
                    properties:
                      returns:
                        type: number
                        description: Expected annualized return.
                        example: 0.5957725785662527
                      variance:
                        type: number
                        description: Expected variance of returns.
                        example: 0.3299058349982667
                      sharpeRatio:
                        type: number
                        description: Expected Sharpe ratio.
                        example: 2.031369588809071
                      maxDrawdown:
                        type: number
                        description: Largest peak-to-trough decline over the period.
                        example: -0.1870683148674808
                  timeSeries:
                    type: array
                    description: Value over time as `[timestamp, value]` pairs.
                    items:
                      type: array
                      items:
                        type: number
                    example:
                      - - 1594339200
                        - 10000
                      - - 1594944000
                        - 11565.68
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT or API Key
      description: |
        Enter 'Bearer' followed by a space and then your JWT or API Key.
        Example: `Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...`
        or `Bearer YOUR_API_KEY_HERE`

````