Skip to main content
POST
/
trending
/
combined
Get the trending items
curl --request POST \
  --url https://api.example.com/trending/combined \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "categoryIDs": null,
  "slug": null,
  "languageID": 1,
  "editionIDs": [
    1
  ],
  "dateFromUTC": "2023-01-01T00:00:00",
  "dateToUTC": null,
  "displayModeReleaseID": null,
  "calendarPeriodTypeID": null,
  "page": 1,
  "pageSize": 10
}
'
{
  "success": true,
  "data": "<unknown>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
categoryIDs
integer<int32>[] | null
slug
string | null

Optional: slug as a backup if there are no categories

languageID
integer<int32>
default:1
editionIDs
integer<int32>[] | null
dateFromUTC
string<date-time> | null
default:2023-01-01T00:00:00
dateToUTC
string<date-time> | null
displayModeReleaseID
integer<int32> | null
calendarPeriodTypeID
integer<int32> | null
page
integer<int32>
default:1
pageSize
integer<int32>
default:10

Response

Success

success
boolean
data
unknown