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

# Latest Holdings

> Get the latest COMPUTED holdings from ClickHouse — the portfolio's current
state on its most recent computed day, with drifted weights / ending values.
For the as-defined definition (all rebalance dates) use /holdings.

Discriminated status, matching /analytics:
  - {status: "ready", holdings}   when the series is computed
  - {status: "not_computed", holdings: []} (200) when the portfolio exists but
    its series is empty (a background compute hasn't landed)
  - 404 only when the portfolio genuinely doesn't exist.



## OpenAPI

````yaml GET /v1/portfolio/{portfolio_key}/holdings/latest
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}/holdings/latest:
    get:
      tags:
        - v1
        - Portfolio Tracker
      summary: Get Portfolio Holdings Latest
      description: >-
        Get the latest COMPUTED holdings from ClickHouse — the portfolio's
        current

        state on its most recent computed day, with drifted weights / ending
        values.

        For the as-defined definition (all rebalance dates) use /holdings.


        Discriminated status, matching /analytics:
          - {status: "ready", holdings}   when the series is computed
          - {status: "not_computed", holdings: []} (200) when the portfolio exists but
            its series is empty (a background compute hasn't landed)
          - 404 only when the portfolio genuinely doesn't exist.
      operationId: >-
        get_portfolio_holdings_latest_v1_portfolio__portfolio_key__holdings_latest_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

````