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

# Get event market outcomes

> Returns the winning outcome name for each resolved market in an event, keyed by market slug. Useful for quickly checking which outcomes won across a series.



## OpenAPI

````yaml https://api.struct.to/openapi.json get /polymarket/events/outcomes
openapi: 3.1.0
info:
  title: Polymarket API
  description: >-
    RESTful API for querying Polymarket prediction markets data including
    events, markets, traders, holders, and real-time metrics
  license:
    name: ''
  version: 1.0.0
servers:
  - url: https://api.struct.to/v1
security: []
paths:
  /polymarket/events/outcomes:
    get:
      tags:
        - Events
      summary: Get event market outcomes
      description: >-
        Returns the winning outcome name for each resolved market in an event,
        keyed by market slug. Useful for quickly checking which outcomes won
        across a series.
      operationId: get_event_outcomes
      parameters:
        - name: event_slug
          in: query
          description: Event slug (required)
          required: true
          schema:
            type: string
        - name: limit
          in: query
          description: 'Number of resolved markets per page (default: 10, max: 250)'
          required: false
          schema:
            type: integer
            format: int32
        - name: pagination_key
          in: query
          description: Cursor-based pagination key for fetching next page
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Map of market_slug → winning outcome name with pagination metadata
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: string
                propertyNames:
                  type: string
        '400':
          description: Missing event_slug parameter

````