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

# Correlated Markets status and coverage

> Public app-tier Discovery endpoint that reports Correlated Markets signal, embedding, and background worker coverage.



## OpenAPI

````yaml /openapi/openapi.json get /correlated-markets/status
openapi: 3.0.2
info:
  title: AGG API
  version: 1.0.0
  description: >-
    Prediction market aggregator REST API — authentication, users, venue events,
    venue markets, orderbooks, charts, and execution workflows.
servers:
  - url: https://api.agg.market
    description: Production
  - url: https://api.staging.agg.market
    description: Staging
security: []
paths:
  /correlated-markets/status:
    get:
      tags:
        - Discovery
      summary: Correlated Markets status and coverage
      description: >-
        Public app-tier Discovery endpoint that reports Correlated Markets
        signal, embedding, and background worker coverage.
      operationId: getCorrelatedMarketsStatus
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                type: object
                required:
                  - markets
                  - signals
                  - eventTitleEmbeddings
                  - config
                properties:
                  markets:
                    type: object
                    required:
                      - total
                      - processed
                      - coverage
                    properties:
                      total:
                        type: number
                      processed:
                        type: number
                      coverage:
                        type: number
                  signals:
                    type: object
                    required:
                      - total
                      - withEmbeddings
                      - missingEmbeddings
                    properties:
                      total:
                        type: number
                      withEmbeddings:
                        type: number
                      missingEmbeddings:
                        type: number
                  eventTitleEmbeddings:
                    type: object
                    required:
                      - total
                      - events
                      - coverage
                    properties:
                      total:
                        type: number
                      events:
                        type: number
                      coverage:
                        type: number
                  config:
                    type: object
                    required:
                      - batchSize
                      - jobsEnabled
                      - backfillInterval
                      - reembedInterval
                      - eventEmbeddingInterval
                    properties:
                      batchSize:
                        type: number
                      jobsEnabled:
                        type: boolean
                      backfillInterval:
                        type: string
                      reembedInterval:
                        type: string
                      eventEmbeddingInterval:
                        type: string
        '401':
          description: '401'
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                properties:
                  message:
                    type: string
      security:
        - appId: []
components:
  securitySchemes:
    appId:
      type: apiKey
      in: header
      name: x-app-id
      description: Your application ID. Required for all app-tier and user-tier routes.

````