- Endpoint:
GET /api/v1/events/result?eid={{eventId}} - Description: Returns a list of market IDs that are marked as final result markets for the given event(s).
- Method:
GET
Request Parameters
| Param | Type | Description |
|---|---|---|
eid | string | One or more Event IDs (comma-separated). Supports up to 50 event IDs. |
Request Example
GET /api/v1/events/result?eid=268416,34484327,34493448,685788058
Host: {{baseUrl}}
Sample Response
{
"268416": [],
"34484327": [],
"34493448": [
"1.245441833"
],
"685788058": []
}
Notes
- This API identifies markets that are considered result-deciding (e.g., “Match Winner”, “Completed Match”).
- A non-empty array under an
eventIdindicates the specificmarketId(s)that hold the final result for that event. - Useful when validating outcome-related logic or rendering result-based highlights.