im getting started with web scraping the page loads more data when it scrolls so i opened the get url when it does this and got a json of all the data i needed but my code doesnt return all the json i get in the browser only 2 results that arent the first or last 2 or even next to eachother i have no idea why its cutting the rest out
import requests
jsonUrl = "https://www.deviantart.com/_napi/da-user-profile/api/gallery/contents?username=Dreamsquid&offset=48&limit=24&folderid=58533887"
response = requests.get(jsonUrl)
jsonResponse = response.json()
print(jsonResponse)