GET api/sports/sportexotics?TournamentId={TournamentId}&SpecialExoticsOnly={SpecialExoticsOnly}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
TournamentId

integer

None.

SpecialExoticsOnly

boolean

None.

Body Parameters

None.

Response Information

Resource Description

BO.BETResponseObjects.BaseResponseOfSystem.Collections.Generic.ListOfBO.Models.Exotics.SportExoticsModel
NameDescriptionTypeAdditional information
ResponseObject

Collection of BO.Models.Exotics.SportExoticsModel

None.

ResponseMessage

string

None.

ResponseType

BO.Enums.ResponseType

None.

Response Formats

application/json, text/json

Sample:
{
  "responseObject": [
    {
      "exoticCategoryName": "sample string 1",
      "specialExotics": [
        {
          "eventBetTypeGroupId": 1,
          "betTypeId": 2,
          "date": "2025-12-14T18:03:48.8784585+02:00",
          "name": "sample string 4"
        },
        {
          "eventBetTypeGroupId": 1,
          "betTypeId": 2,
          "date": "2025-12-14T18:03:48.8784585+02:00",
          "name": "sample string 4"
        }
      ]
    },
    {
      "exoticCategoryName": "sample string 1",
      "specialExotics": [
        {
          "eventBetTypeGroupId": 1,
          "betTypeId": 2,
          "date": "2025-12-14T18:03:48.8784585+02:00",
          "name": "sample string 4"
        },
        {
          "eventBetTypeGroupId": 1,
          "betTypeId": 2,
          "date": "2025-12-14T18:03:48.8784585+02:00",
          "name": "sample string 4"
        }
      ]
    }
  ],
  "responseMessage": "sample string 1",
  "responseType": 1
}

application/xml, text/xml

Sample:
<BaseResponseOfListOfSportExoticsModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResponseObject>
    <SportExoticsModel>
      <ExoticCategoryName>sample string 1</ExoticCategoryName>
      <SpecialExotics>
        <SpecialExotic>
          <EventBetTypeGroupId>1</EventBetTypeGroupId>
          <BetTypeId>2</BetTypeId>
          <Date>2025-12-14T18:03:48.8784585+02:00</Date>
          <Name>sample string 4</Name>
        </SpecialExotic>
        <SpecialExotic>
          <EventBetTypeGroupId>1</EventBetTypeGroupId>
          <BetTypeId>2</BetTypeId>
          <Date>2025-12-14T18:03:48.8784585+02:00</Date>
          <Name>sample string 4</Name>
        </SpecialExotic>
      </SpecialExotics>
    </SportExoticsModel>
    <SportExoticsModel>
      <ExoticCategoryName>sample string 1</ExoticCategoryName>
      <SpecialExotics>
        <SpecialExotic>
          <EventBetTypeGroupId>1</EventBetTypeGroupId>
          <BetTypeId>2</BetTypeId>
          <Date>2025-12-14T18:03:48.8784585+02:00</Date>
          <Name>sample string 4</Name>
        </SpecialExotic>
        <SpecialExotic>
          <EventBetTypeGroupId>1</EventBetTypeGroupId>
          <BetTypeId>2</BetTypeId>
          <Date>2025-12-14T18:03:48.8784585+02:00</Date>
          <Name>sample string 4</Name>
        </SpecialExotic>
      </SpecialExotics>
    </SportExoticsModel>
  </ResponseObject>
  <ResponseMessage>sample string 1</ResponseMessage>
  <ResponseType>Success</ResponseType>
</BaseResponseOfListOfSportExoticsModel>