Open Cloud DataStore API responding with a single response when limit is set

I am currently using Roblox’s Open Cloud for DataStores. I have successfully been able to make a function in Node.JS using Axios get a list of the DataStores in a universe while having a high limit set so I don’t have to work with cursors. However now I’m trying to use DataStore Entries I still have a high limit set but I only receive one key in response along with a nextPageCursor value.

const url = "https://apis.roblox.com/datastores/v1/universes/3021566345/standard- 
datastores/datastore/entries"

axios.get(url, {
    params: {
        "datastoreName" : "PlayerExperience",
        "limit" : 100
    },
    headers: {
        "x-api-key" : "secret"
    }
}).catch(error => {
    console.log(error)
}).then((APIresponse) => {
    response.send(APIresponse.data)
})

The response I receive is:

keys: [ { key: ‘3’ } ], nextPageCursor: ‘eyJ2ZXJzaW9uIjoxLCJjdXJzb3IiOiIxIyJ9’