POST Event/GetExotics

Returns List of Exotics for the current day.

Request Information

URI Parameters

None.

Body Parameters

ApiExoticSearchRequestFilter
NameDescriptionTypeAdditional information
tournamentID

Gets or sets the Search String.

integer

None.

specialExoticOnly

Gets or sets the Search String.

boolean

None.

userID

Gets or sets the user identifier.

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "tournamentID": 1,
  "specialExoticOnly": true,
  "userID": 2
}

application/xml, text/xml

Sample:
<ApiExoticSearchRequestFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models">
  <userID>2</userID>
  <specialExoticOnly>true</specialExoticOnly>
  <tournamentID>1</tournamentID>
</ApiExoticSearchRequestFilter>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ApiExoticSearchRequestFilter'.

Response Information

Resource Description

ApiExoticsResponse
NameDescriptionTypeAdditional information
ResponseObject

Gets or sets the response object.

Collection of ApiExotics

None.

ResponseType

Gets or sets the type of the response.

integer

None.

ResponseMessage

Gets or sets the response message.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseObject": [
    {
      "EventBetTypeMapID": 1,
      "BetTypeID": 2,
      "BetTypeName": "sample string 3",
      "SportID": 4,
      "SportName": "sample string 5",
      "CountryID": 6,
      "TournamentID": 7,
      "TournamentName": "sample string 8",
      "TournamentDate": "2025-12-27T08:54:22.7176271+02:00",
      "EventID": 9,
      "EventName": "sample string 10",
      "EventNumber": 11,
      "EventDateTime": "2025-12-27T08:54:22.7176271+02:00",
      "EventBetTypeMapGroupName": "sample string 13",
      "BetTypeExtraInfo": 1,
      "CountryCode2": "sample string 14"
    },
    {
      "EventBetTypeMapID": 1,
      "BetTypeID": 2,
      "BetTypeName": "sample string 3",
      "SportID": 4,
      "SportName": "sample string 5",
      "CountryID": 6,
      "TournamentID": 7,
      "TournamentName": "sample string 8",
      "TournamentDate": "2025-12-27T08:54:22.7176271+02:00",
      "EventID": 9,
      "EventName": "sample string 10",
      "EventNumber": 11,
      "EventDateTime": "2025-12-27T08:54:22.7176271+02:00",
      "EventBetTypeMapGroupName": "sample string 13",
      "BetTypeExtraInfo": 1,
      "CountryCode2": "sample string 14"
    }
  ],
  "ResponseType": 1,
  "ResponseMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<ApiExoticsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models">
  <ResponseMessage>sample string 2</ResponseMessage>
  <ResponseType>1</ResponseType>
  <ResponseObject>
    <ApiExotics>
      <BetTypeExtraInfo>1</BetTypeExtraInfo>
      <BetTypeID>2</BetTypeID>
      <BetTypeName>sample string 3</BetTypeName>
      <CountryCode2>sample string 14</CountryCode2>
      <CountryID>6</CountryID>
      <EventBetTypeMapGroupName>sample string 13</EventBetTypeMapGroupName>
      <EventBetTypeMapID>1</EventBetTypeMapID>
      <EventDateTime>2025-12-27T08:54:22.7176271+02:00</EventDateTime>
      <EventID>9</EventID>
      <EventName>sample string 10</EventName>
      <EventNumber>11</EventNumber>
      <SportID>4</SportID>
      <SportName>sample string 5</SportName>
      <TournamentDate>2025-12-27T08:54:22.7176271+02:00</TournamentDate>
      <TournamentID>7</TournamentID>
      <TournamentName>sample string 8</TournamentName>
    </ApiExotics>
    <ApiExotics>
      <BetTypeExtraInfo>1</BetTypeExtraInfo>
      <BetTypeID>2</BetTypeID>
      <BetTypeName>sample string 3</BetTypeName>
      <CountryCode2>sample string 14</CountryCode2>
      <CountryID>6</CountryID>
      <EventBetTypeMapGroupName>sample string 13</EventBetTypeMapGroupName>
      <EventBetTypeMapID>1</EventBetTypeMapID>
      <EventDateTime>2025-12-27T08:54:22.7176271+02:00</EventDateTime>
      <EventID>9</EventID>
      <EventName>sample string 10</EventName>
      <EventNumber>11</EventNumber>
      <SportID>4</SportID>
      <SportName>sample string 5</SportName>
      <TournamentDate>2025-12-27T08:54:22.7176271+02:00</TournamentDate>
      <TournamentID>7</TournamentID>
      <TournamentName>sample string 8</TournamentName>
    </ApiExotics>
  </ResponseObject>
</ApiExoticsResponse>