Get a Twitch profile for a channel by handle.
Endpoint
/v1/twitch/profiles/{handle}
Path
Twitch handle to look up, with or without a leading @.
const response = await fetch( "https://api.socialfetch.dev/v1/twitch/profiles/ishowspeed", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);