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

# Get Outcome Mints

> API reference for GET /api/v1/outcome_mints



## OpenAPI

````yaml GET /api/v1/outcome_mints
openapi: 3.1.0
info:
  title: prediction-markets-api
  description: API for prediction markets
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://dev-prediction-markets-api.dflow.net
security:
  - api_key: []
tags:
  - name: Candlesticks
    description: Market and event candlesticks relay endpoints
  - name: Events
    description: Event management endpoints
  - name: Markets
    description: Market management endpoints
  - name: Trades
    description: Trade history endpoints
  - name: Series
    description: Series template endpoints
  - name: Tags
    description: Tag and category endpoints
  - name: Sports
    description: Sports filtering endpoints
  - name: Live Data
    description: Live data relay endpoints
  - name: Orderbook
    description: Orderbook endpoints
  - name: Search
    description: Full-text search endpoints
paths:
  /api/v1/outcome_mints:
    get:
      tags:
        - Markets
      summary: Get all outcome mints
      description: >-
        Returns a flat list of all yes_mint and no_mint pubkeys from all
        supported

        markets. Optionally filters by minimum close timestamp.
      operationId: outcome_mints
      parameters:
        - name: minCloseTs
          in: query
          description: >-
            Minimum close timestamp (Unix timestamp in seconds). Only markets
            with

            close_time >= min_close_ts will be included.
          required: false
          schema:
            type: integer
            format: int64
            minimum: 0
      responses:
        '200':
          description: List of all outcome mints from supported markets
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OutcomeMintsResponse'
components:
  schemas:
    OutcomeMintsResponse:
      type: object
      required:
        - mints
      properties:
        mints:
          type: array
          items:
            type: string
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API key for authentication. Contact hello@dflow.net to obtain an API
        key.

````