Couple questions
I am currently using https://dev.twitch.tv/docs/api/reference#get-broadcaster-subscriptions t o get a list of subscription a streamer have
Which gives
BroadcasterID string `json:"broadcaster_id"`
BroadcasterLogin string `json:"broadcaster_login"`
BroadcasterName string `json:"broadcaster_name"`
IsGift bool `json:"is_gift"`
GifterID string `json:"gifter_id"`
GifterLogin string `json:"gifter_login"`
GifterName string `json:"gifter_name"`
Tier string `json:"tier"`
PlanName string `json:"plan_name"`
UserID string `json:"user_id"`
UserName string `json:"user_name"`
UserLogin string `json:"user_login
I want to get the total number of subscription per month, but the problem is that the api doesn’t give time boundary for each subscription
So here is my question
-
Is there a way to estimate payout (# of subscription) a streamer get for a particular month?
-
is there a way to figure out if the subscription comes from prime or not?
-
Since each viewer can only hold one subscription per streamer, what happen in the case of gifted subscription count exceed viewer count, do those subscription get padded to later month?