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

# Get correlated market signals for a market

> Public app-tier Discovery endpoint that returns generated Yes/No signals explaining which real-world states become more or less likely if a market resolves.



## OpenAPI

````yaml /openapi/openapi.json get /correlated-markets/{venueMarketId}
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/{venueMarketId}:
    get:
      tags:
        - Discovery
      summary: Get correlated market signals for a market
      description: >-
        Public app-tier Discovery endpoint that returns generated Yes/No signals
        explaining which real-world states become more or less likely if a
        market resolves.
      operationId: getMarketCorrelatedSignals
      parameters:
        - name: venueMarketId
          in: path
          required: true
          schema:
            type: string
        - name: includeResolved
          in: query
          required: false
          schema:
            type: boolean
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                type: object
                required:
                  - id
                  - venueMarketId
                  - sourceModel
                  - promptVersion
                  - createdAt
                  - signals
                properties:
                  id:
                    type: string
                  venueMarketId:
                    type: string
                  sourceModel:
                    type: string
                  promptVersion:
                    type: number
                  createdAt:
                    type: string
                  signals:
                    type: array
                    items:
                      type: object
                      required:
                        - id
                        - text
                        - side
                        - direction
                        - domain
                      properties:
                        id:
                          type: string
                        text:
                          type: string
                        side:
                          type: string
                          enum:
                            - 'yes'
                            - 'no'
                        direction:
                          type: string
                          enum:
                            - more_likely
                            - less_likely
                        domain:
                          type: string
        '401':
          description: '401'
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                properties:
                  message:
                    type: string
        '404':
          description: '404'
          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.

````