This should be
boradcaster_id = response['data'][0]['id']
Currently, you are passing the entire object as the id, and the token obviously does not match that, so it errors out.
This should be
boradcaster_id = response['data'][0]['id']
Currently, you are passing the entire object as the id, and the token obviously does not match that, so it errors out.