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

# Arbitrage Opportunities

> Cross-platform arbitrage opportunities with spread analysis (Pro tier)



## OpenAPI

````yaml GET /api/v1/arbitrage
openapi: 3.0.3
info:
  title: EventGraph API
  description: >-
    Unified prediction market data across Polymarket, Kalshi, Limitless, and
    OpinionTrade.
  version: 1.0.0
  contact:
    name: EventGraph
    url: https://eventgraph.ai
    email: info@eventgraph.ai
servers:
  - url: https://app.eventgraph.ai
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /api/v1/arbitrage:
    get:
      tags:
        - Intelligence
      summary: Arbitrage Opportunities
      description: >-
        Cross-platform arbitrage opportunities with spread analysis. Requires
        Pro tier.
      operationId: getArbitrage
      parameters:
        - name: min_spread
          in: query
          required: false
          description: Minimum spread in cents
          schema:
            type: number
            minimum: 0
            default: 1
        - name: min_match_score
          in: query
          required: false
          description: Minimum title match score (0.0 to 1.0)
          schema:
            type: number
            minimum: 0
            maximum: 1
            default: 0.55
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 200
            default: 50
      responses:
        '200':
          description: Arbitrage opportunities
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ArbitrageResponse'
        '403':
          description: Pro tier required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    ArbitrageResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/ArbitrageOpportunity'
        timestamp:
          type: string
          format: date-time
        meta:
          $ref: '#/components/schemas/PaginationMeta'
    Error:
      type: object
      properties:
        detail:
          type: object
          properties:
            error:
              type: string
            message:
              type: string
    ArbitrageOpportunity:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
        platforms:
          type: array
          items:
            type: string
        prices:
          type: object
          description: Platform to YES price mapping
        volumes:
          type: object
          description: Platform to volume mapping
        best_buy_platform:
          type: string
        best_buy_price:
          type: number
        best_sell_platform:
          type: string
        best_sell_price:
          type: number
        spread_percent:
          type: number
        confidence:
          type: string
          enum:
            - high
            - medium
            - low
        match_score:
          type: number
        feasibility_label:
          type: string
          enum:
            - good
            - fair
            - poor
        min_side_volume:
          type: number
    PaginationMeta:
      type: object
      properties:
        total:
          type: integer
        page:
          type: integer
        page_size:
          type: integer
        total_pages:
          type: integer
        response_ms:
          type: number
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Your EventGraph API key (eg_live_...)

````