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>"
}Get the trending items with some optional parameters. Supports paging.
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>"
}The access token received from the authorization server in the OAuth 2.0 flow.
Optional: slug as a backup if there are no categories