API 4: Market Result by Market ID

Updated on November 5, 2025
  • Endpoint: GET /api/v1/markets/result?mid={{marketId}}
  • Description: Returns the result status for one or more markets. Useful for determining winning outcomes or current state post-event.
  • Method: GET

Market Types

Following are the Market Types you may encounter when querying the GET /api/v1/markets/result endpoint:

  • match-odd
  • completed-match
  • tied-match
  • goals
  • super-over
  • bookmaker
  • session
  • other-market
  • odd-even
  • khado
  • meter
  • winner-market
  • line-market
  • bookmaker2
  • ball-by-ball

Request Parameters

ParamTypeDescription
midstringOne or more Market IDs (comma-separated). Supports up to 50 market IDs.

Request Example

GET /api/v1/markets/result?mid=1.245441832,4.107640642996-BB,4.608146831283-BM
Host: {{baseUrl}}

Sample Response

[
  {
    "mid": "4.107640642996-BB",
    "mt": "ball-by-ball",
    "res": "1",
    "rt": false,
    "ia": false
  },
  {
    "mid": "1.245441832",
    "mt": "match-odd",
    "res": "453174",
    "rt": false,
    "ia": false
  },
  {
    "mid": "4.608146831283-F3",
    "mt": "other-market",
    "res": "back",
    "rt": false,
    "ia": false
  },
  {
    "mid": "4.608146831281-F2",
    "mt": "session",
    "res": "Abandoned",
    "rt": false,
    "ia": true
  }
]

Glossary of Response Keys

KeyFull NameTypeDescription
midmarketIdSTRINGUnique identifier of the market
mtmarketTypeSTRINGType of market (e.g., match-odd, bookmaker, ball-by-ball)
resresultSTRINGResult of the market. Could be a number (e.g., run id), back/lay, or empty
rtrecalledBOOLEANtrue if the result is recalled
iaisAbandonedBOOLEANtrue if the market was invalid/abandoned