> ## 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 Live Data by Mint

> API reference for GET /api/v1/live_data/by-mint/{mint_address}



## OpenAPI

````yaml GET /api/v1/live_data/by-mint/{mint_address}
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/live_data/by-mint/{mint_address}:
    get:
      tags:
        - Live Data
      summary: Get live data by mint address
      description: >-
        Looks up the event ticker from a market mint address, then fetches all
        live

        data for that event. Supports all milestone filtering options.
      operationId: live_data_by_mint
      parameters:
        - name: mint_address
          in: path
          description: Market mint address (ledger or outcome mint)
          required: true
          schema:
            type: string
        - name: minimumStartDate
          in: query
          description: Minimum start date to filter milestones (RFC3339 format)
          required: false
          schema:
            type: string
        - name: category
          in: query
          description: Filter by milestone category
          required: false
          schema:
            type: string
        - name: competition
          in: query
          description: Filter by competition
          required: false
          schema:
            type: string
        - name: sourceId
          in: query
          description: Filter by source ID
          required: false
          schema:
            type: string
        - name: type
          in: query
          description: Filter by milestone type (use 'type' as query param name)
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Live data retrieved successfully
          content:
            application/json:
              schema: {}
        '400':
          description: Bad request or invalid mint
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Market not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ErrorResponse:
      type: object
      required:
        - msg
        - code
      properties:
        code:
          type: string
        msg:
          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.

````