API throttled when making parallel requests using multiple access token

If I possess 5 access tokens, will the total maximum query cost remain at 20,000 points, as indicated in the following JSON example?

"extensions": {
    "cost": {
        "requestedQueryCost": 1,
        "actualQueryCost": 1,
        "throttleStatus": {
            "maximumAvailable": 20000.0,
            "currentlyAvailable": 19999,
            "restoreRate": 1000.0
        }
    }
}

In essence, does having 5 access tokens maintain the overall maximum query cost at 20,000 points, or does each access token contribute to a separate query cost limit?

1 Like