The user profile request in the Steam API supports batches of up to 100 IDs at a time, but steam.user.profile is designed and implemented to reflect only 1 profile. In order to support the batch requests a multi-profile fetching class will need to be implemented which will build and return lists of steam.user.profile objects in a way similar to what happens when you iterate schema and inventory objects.
The user profile request in the Steam API supports batches of up to 100 IDs at a time, but
steam.user.profile
is designed and implemented to reflect only 1 profile. In order to support the batch requests a multi-profile fetching class will need to be implemented which will build and return lists ofsteam.user.profile
objects in a way similar to what happens when you iterate schema and inventory objects.