List videos from a Twitch channel by handle.
Endpoint
/v1/twitch/profiles/{handle}/videos
Path
Twitch handle to look up, with or without a leading @.
Query
Optional filter for video type.
Optional sort order.
const response = await fetch( "https://api.socialfetch.dev/v1/twitch/profiles/ishowspeed/videos?sortBy=time", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);