Thanks you for your help so far. Ive updated my code to following:
import json
import sys
import csv
import urllib.request
counter = 0
f = open('followers.csv','w',encoding='utf-8',newline="\n")
mywriter = csv.writer(f,dialect='excel',quoting=csv.QUOTE_MINIMAL)
mywriter.writerow(['User Name','Display Name',])
url = "https://api.twitch.tv/helix/users/follows?to_id=6663444"
req = urllib.request.Request(url)
req.add_header("Client-ID","72v2al6ufhz1x2a32ynl68i6j8vku3")
response = str(urllib.request.urlopen(req).read().decode('utf-8'))
myjson = json.loads(response)
Everything before the while loop works but how would I go about listing all of the followers and not just the default 100?