Is there any way to know the total amount of elements that the API call will return without executing the call or calling only a part of the elements? I just need to know the quantity, not the content.
The return of the API call is displayed in a table, however, at most 20 elements per page (c = 20 & p = 0,1,2,3,4 …). At the first call (c = 20 & p = 0) I need to know the total amount. Even if I return only the first 20 elements, I want to know the total number of elements that will be available in the next pages (p = 1, p = 2, …). Making a call that returns all elements (c = -1) requires a lot of processing time and is not feasible.