images field to the Sport typebrandColor field of type ImageBrandColor to the Image typebookieId on BetFilter input typematchMonth on Bet type is removedmatchDate added to MatchesOrderBy input type. This argument allows to sort matches by match date.HrefReplaced type added to the GoLink type. This type is used to retrieve the href of the link with replaced tracking parameters (when available).
query MyQuery {
goLink(filter: {id: "1"}) {
id
href
hrefReplaced(filter: {bookieIds: [2]}) {
href
affiliateId
applicationId
entityId
entityType
country
countrySubdivisionCode
}
}
}
{
"data": {
"goLink": {
"id": "1",
"href": "https://www.test.com/open-account?###affiliate_params###",
"hrefReplaced": [
{
"href": "https://www.test.com/open-account?affiliate=case123",
"affiliateId": "affiliate=case123",
"applicationId": 1,
"entityId": 2,
"entityType": 'bookie',
"country": null,
"countrySubdivisionCode": null
},
{
"href": "https://www.test.com/open-account?affiliate=case456",
"affiliateId": "affiliate=case456",
"applicationId": 1,
"entityId": 2,
"entityType": 'bookie',
"country": "AT",
"countrySubdivisionCode": null
}
]
}
}
}
roundMarker on Round type now returns an arrayround and roundsRoundFilter and RoundsFilter are addedRoundFilter type renamed to the CompetitionRoundFilterids, seasonIds and currentMatchDays are added to the CompetitionRoundFilter with the same functionality as the old argumentsid, seasonId and currentMatchDay in CompetitionRoundFilter will be deprecatedids is required without seasonIds on CompetitionRoundFilterroundIdsMatchDay argument in Matches filter are also considering group_matchdayTeamPerson relation added to the Person typePersonsFilterThe old arguments will be removed on November 18, 2025. After this date, queries using the deprecated arguments will no longer be supported.
query OldQuery($filter: RoundFilter!) {
competitions {
data {
rounds(filter: $filter) {
data {
id
}
}
}
}
}
{
"filter": {
"id": ["1"],
"currentMatchDay": [10],
"seasonId": [10]
}
}
query NewQuery($filter: CompetitionRoundFilter!) {
competitions {
data {
rounds(filter: $filter) {
data {
id
}
}
}
}
}
{
"filter": {
"ids": ["1"],
"currentMatchDays": [10],
"seasonIds": [10]
}
}
SerachId field is now available for application groups, channels, markets, persons, and sports.
The SearchIdResult type is extended to support the new types.
differenceName will be replaced by differenceType in the Standing type.differenceName is now nullable.The old field will be removed on October 27, 2025. After this date, queries using the deprecated types will no longer be supported.
query OldQuery {
standings {
data {
id
differenceName
}
}
}
query NewQuery {
standings {
data {
id
differenceType
}
}
}
The goLinks filters now use soft filtering. Soft Filtering means that if, for example, you filter by Country AT, you will get back both all AT goLinks and all globally available goLinks without a country restriction. Previously, globally defined goLinks were excluded when filtering by a specific country. The same behaviour also applies to the other mentioned soft filters.
The soft filter arguments are:
The country argument in these filters is renamed to countries.
The old argument will be removed on October 27, 2025. After this date, queries using the deprecated argument will no longer be supported.
query OldQuery {
matches {
data {
id
bets(filter: {
bookieIds: 10,
country: [AT, DE] # Deprecated
}) {
data {
id
}
}
}
}
}
query NewQuery {
matches {
data {
id
bets(filter: {
bookieIds: 10,
countries: [AT, DE]
}) {
data {
id
}
}
}
}
}
competitionCollectionId argument in the MatchesFilter is replaced by competitionCollectionIds and now accepts arrays.The old argument will be removed on October 27, 2025. After this date, queries using the deprecated argument will no longer be supported.
query OldQuery {
matches(filter: {competitionCollectionId: 2}) {
data {
id
competitionId
}
}
}
query NewQuery {
matches(filter: {competitionCollectionIds: [2]}) {
data {
id
competitionId
}
}
}
The deprecated fileds will be removed on October 27, 2025. After this date, queries using the deprecated fields will no longer be supported.
query OldQeury {
bookies {
data {
id
deepLinks(filter: {country: AT}) { #deprecated
id #deprecated
countries #deprecated
urlPattern #deprecated
isFillingBetSlip
glue
}
}
}
}
query NewQuery {
bookies {
data {
id
goLinks(filter: {countries: AT, types: [DEEP_LINK, MULTI_DEEP_LINK]}) {
data {
id # same as deepLink id
countries # same as deepLink countries
href # same as deepLink urlPattern
deepLink {
isFillingBetSlip
glue
}
}
}
}
}
}