Roblox Datastore API Returning 400

Basically, I am trying to access the roblox standard data store API with python, but I am getting a 400 error for “incorrect datastore name”, and it seems like the paramaters are merging. Here is the error:

{'errors': {'limit': ["The value '5datastoreName=leaderstats0' is not valid."]}, 'type': 'https://tools.ietf.org/html/rfc7231#section-6.5.1', 'title': 'One or more validation errors occurred.', 'status': 400, 'traceId': '00-6ef1ab3e3b4735340be8d9b1aabc8fbf-0d20f98773e3f8dc-00'}

And here is a piece of the code in question:

r = requests.get("https://apis.roblox.com/datastores/v1/universes/4535319067/standard-datastores/datastore/entries", params="limit=5" "datastoreName=leaderstats0",
                 headers={"x-api-key": KEY})
print(r)
data = r.text
parceddata = json.loads(data)
print(parceddata)

Anyone have an idea as to why this isn’t working?