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

> Macro lens — per-market breakdown with aggregate stats, top/bottom baskets, distributions.

- **No `market` param** → all 38 markets (~43.5KB). Each market has: aggregate_daily/wtd/mtd/ytd,
  n_baskets, size_tier, total_market_cap_usd, top/bottom performers per period, return distribution.
- **`market=GB`** → full detail for one country (~1.1KB).

Also returns `regime_tag` and `signals` for context.



## OpenAPI

````yaml GET /v1/telemetry/macro
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/macro:
    get:
      tags:
        - v1
        - Telemetry
      summary: Get Telemetry Macro
      description: >-
        Macro lens — per-market breakdown with aggregate stats, top/bottom
        baskets, distributions.


        - **No `market` param** → all 38 markets (~43.5KB). Each market has:
        aggregate_daily/wtd/mtd/ytd,
          n_baskets, size_tier, total_market_cap_usd, top/bottom performers per period, return distribution.
        - **`market=GB`** → full detail for one country (~1.1KB).


        Also returns `regime_tag` and `signals` for context.
      operationId: get_telemetry_macro_v1_telemetry_macro_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: >-
              Single market code for drilldown, e.g. GB, US, AU. Omit for all 38
              markets.
            title: Market
          description: >-
            Single market code for drilldown, e.g. GB, US, AU. Omit for all 38
            markets.
      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

````