-3

I have following doubts in Rest API concepts

  1. What is the maximum amount of results returned by Rest API? I mean in terms of memory.
  2. Whether the parameter "page-size" is common for All REST API providers? or Will it depends based on provider?(facebook,twitter,jira etc)
James McLeod
  • 2,381
  • 1
  • 17
  • 19
Vinod Kumar
  • 408
  • 4
  • 18

1 Answers1

1

As far I as know, there isn't a maximum number of results returned from a REST call. You'll be accidentally limited only from the server implementation that could limit the HTTP payload size.

About your second question, no parameter is common for all REST API providers.

aleric
  • 152
  • 4
  • 9