Clip does not exist using Kraken V API

I’m trying to use the kraken API with this endpoint:
https://api.twitch.tv/kraken/clips/
from here : https://dev.twitch.tv/docs/v5/reference/clips/
Some clips return good values and others just 404.
For example this clip : https://clips.twitch.tv/AwkwardTastyWolfMau5 does not work with https://api.twitch.tv/kraken/clips/AwkwardTastyWolfMau5
But this one does: https://clips.twitch.tv/AmazonianEncouragingLyrebirdAllenHuhu

Am I missing something or are some clips inaccessible by this API?

Can you show us your code used to make those calls because both of those clips are returning data fine for me.

Make sure you are setting a v5 header as per the docs:

curl -H 'Accept: application/vnd.twitchtv.v5+json' \
-H 'Client-ID: uo6dggojyb8d6soh92zknwmi5ej1q2' \
-X GET 'https://api.twitch.tv/kraken/clips/AmazonianEncouragingLyrebirdAllenHuhu'

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.