API 6: Final Result Market IDs by Event

Updated on November 5, 2025
  • 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

ParamTypeDescription
eidstringOne 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 eventId indicates the specific marketId(s) that hold the final result for that event.
  • Useful when validating outcome-related logic or rendering result-based highlights.