Reputation: 1100
I know that there is a limit to the size of a json when sending in the request body but I did not find anything concrete.
Upvotes: 0
Views: 5931
Reputation: 104
JSON is similar to other data formats like XML - if you need to transmit more data, you just send more data. There's no inherent size limitation to the overall JSON request itself. Any limitation would be set by the server parsing the JSON request. (For instance, ASP.NET has the "MaxJsonLength" property of the serializer.)
Upvotes: 5