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

# Get Analytics

> Read the derived analytics for a tracked portfolio. Fast and read-only —
no compute. Returns a discriminated status:
  - {status: "ready", analytics}  when the series is computed
  - {status: "not_computed"} (200) when the portfolio exists but its series
    is empty (a background compute hasn't landed) — the client triggers a
    rebuild and polls, rather than dead-ending on a 404
  - 404 only when the portfolio genuinely doesn't exist.



## OpenAPI

````yaml GET /v1/portfolio/{portfolio_key}/analytics
openapi: 3.1.0
info:
  title: Parallax API
  description: >-
    Parallax by Chicago Global — AI-powered investment research and portfolio
    analytics. Multi-factor scoring, portfolio analysis and tracking, financial
    statements, analyst estimates, ETF analytics, valuation (DCF & multiples),
    macro and market telemetry, and AI-generated research reports.
  version: 1.1.0
servers:
  - url: https://api.chicago.global
security:
  - HTTPBearer: []
paths:
  /v1/portfolio/{portfolio_key}/analytics:
    get:
      tags:
        - v1
        - Portfolio Tracker
      summary: Get Portfolio Analytics
      description: |-
        Read the derived analytics for a tracked portfolio. Fast and read-only —
        no compute. Returns a discriminated status:
          - {status: "ready", analytics}  when the series is computed
          - {status: "not_computed"} (200) when the portfolio exists but its series
            is empty (a background compute hasn't landed) — the client triggers a
            rebuild and polls, rather than dead-ending on a 404
          - 404 only when the portfolio genuinely doesn't exist.
      operationId: get_portfolio_analytics_v1_portfolio__portfolio_key__analytics_get
      parameters:
        - name: portfolio_key
          in: path
          required: true
          schema:
            type: string
            title: Portfolio Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '404':
          description: Not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '500':
          description: Internal server error
      security:
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````