- 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-oddcompleted-matchtied-matchgoalssuper-overbookmakersessionother-marketodd-evenkhadometerwinner-marketline-marketbookmaker2ball-by-ball
Request Parameters
| Param | Type | Description |
|---|---|---|
mid | string | One 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
| Key | Full Name | Type | Description |
|---|---|---|---|
mid | marketId | STRING | Unique identifier of the market |
mt | marketType | STRING | Type of market (e.g., match-odd, bookmaker, ball-by-ball) |
res | result | STRING | Result of the market. Could be a number (e.g., run id), back/lay, or empty |
rt | recalled | BOOLEAN | true if the result is recalled |
ia | isAbandoned | BOOLEAN | true if the market was invalid/abandoned |