New Twitch API error responses

In the example of:

https://api.twitch.tv/helix/users/follows

The response is:

{
"error": "Bad Request",
"status": 400,
"message": "Must provide either from_id or to_id"
}

So you should see similar on other end points

Like

https://api.twitch.tv/helix/videos

{
"error": "Bad Request",
"status": 400,
"message": "Must provide one of the following query params: user ID, game ID, or one or more video IDs."
}

TLDR: you don’t get a data key and you get an error/status key

Which end points are not doing this if any and/or what end points are you trying?