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

> Get the portfolio DEFINITION: every holding in the registry across all
rebalance dates, with the as-defined weights (date, symbol, weight). This is
the portfolio exactly as the user/builder set it — the source of truth for
the definition. For the latest COMPUTED state (drifted weights) use
/holdings/latest.



## OpenAPI

````yaml GET /v1/portfolio/{portfolio_key}/holdings
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:
    get:
      tags:
        - v1
        - Portfolio Tracker
      summary: Get Portfolio Holdings
      description: >-
        Get the portfolio DEFINITION: every holding in the registry across all

        rebalance dates, with the as-defined weights (date, symbol, weight).
        This is

        the portfolio exactly as the user/builder set it — the source of truth
        for

        the definition. For the latest COMPUTED state (drifted weights) use

        /holdings/latest.
      operationId: get_portfolio_holdings_v1_portfolio__portfolio_key__holdings_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

````