GET api/liveinplay/sportfixtures/{sport}/upcoming
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| sport | string |
Required |
Body Parameters
None.
Response Information
Resource Description
BO.BETResponseObjects.BaseResponseOfSystem.Collections.Generic.ListOfBO.MetaData.LiveInPlay.UpcomingEvents| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject | Collection of BO.MetaData.LiveInPlay.UpcomingEvents |
None. |
|
| ResponseMessage | string |
None. |
|
| ResponseType | BO.Enums.ResponseType |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseObject": [
{
"tournamentName": "sample string 1",
"eventName": "sample string 2",
"startTime": "2025-12-14T18:04:59.1936637+02:00",
"fixtureID": "sample string 4"
},
{
"tournamentName": "sample string 1",
"eventName": "sample string 2",
"startTime": "2025-12-14T18:04:59.1936637+02:00",
"fixtureID": "sample string 4"
}
],
"responseMessage": "sample string 1",
"responseType": 1
}
application/xml, text/xml
Sample:
<BaseResponseOfListOfUpcomingEvents xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ResponseObject>
<UpcomingEvents>
<TournamentName>sample string 1</TournamentName>
<EventName>sample string 2</EventName>
<StartTime>2025-12-14T18:04:59.1936637+02:00</StartTime>
<FixtureID>sample string 4</FixtureID>
</UpcomingEvents>
<UpcomingEvents>
<TournamentName>sample string 1</TournamentName>
<EventName>sample string 2</EventName>
<StartTime>2025-12-14T18:04:59.1936637+02:00</StartTime>
<FixtureID>sample string 4</FixtureID>
</UpcomingEvents>
</ResponseObject>
<ResponseMessage>sample string 1</ResponseMessage>
<ResponseType>Success</ResponseType>
</BaseResponseOfListOfUpcomingEvents>