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

# Telemetry Baskets

> Thematic basket performance — filtered and sorted slice of all 400 baskets.

Default response (top 20 by daily, no members): ~8KB.
Full 400 baskets with members: ~800KB — use `limit=400&include_members=true` explicitly.

**Basket fields:** name, basket_id, market, quadrant, daily, wtd, mtd, ytd,
scores, n_stocks, momentum_1m, momentum_6m, daily_zscore, is_priced_in,
confirmed_in, n_confirmed_markets. Members added when `include_members=true`.



## OpenAPI

````yaml GET /v1/telemetry/baskets
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/telemetry/baskets:
    get:
      tags:
        - v1
        - Telemetry
      summary: Get Telemetry Baskets
      description: >-
        Thematic basket performance — filtered and sorted slice of all 400
        baskets.


        Default response (top 20 by daily, no members): ~8KB.

        Full 400 baskets with members: ~800KB — use
        `limit=400&include_members=true` explicitly.


        **Basket fields:** name, basket_id, market, quadrant, daily, wtd, mtd,
        ytd,

        scores, n_stocks, momentum_1m, momentum_6m, daily_zscore, is_priced_in,

        confirmed_in, n_confirmed_markets. Members added when
        `include_members=true`.
      operationId: get_telemetry_baskets_v1_telemetry_baskets_get
      parameters:
        - name: date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Report date (YYYY-MM-DD). Defaults to latest.
            title: Date
          description: Report date (YYYY-MM-DD). Defaults to latest.
        - name: market
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by market code, e.g. US, AU, GB, TW
            title: Market
          description: Filter by market code, e.g. US, AU, GB, TW
        - name: quadrant
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Leaders | Laggards | Rising | Falling
            title: Quadrant
          description: Leaders | Laggards | Rising | Falling
        - name: sort_by
          in: query
          required: false
          schema:
            type: string
            description: 'Sort field: daily | wtd | mtd | ytd'
            default: daily
            title: Sort By
          description: 'Sort field: daily | wtd | mtd | ytd'
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 400
            minimum: 1
            description: Number of baskets to return (default 20, max 400)
            default: 20
            title: Limit
          description: Number of baskets to return (default 20, max 400)
        - name: include_members
          in: query
          required: false
          schema:
            type: boolean
            description: Include member stock list per basket (~1.1KB each)
            default: false
            title: Include Members
          description: Include member stock list per basket (~1.1KB each)
      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

````