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.
Asked
Active
Viewed 3,094 times
0
-
This might be helpful: https://stackoverflow.com/questions/2880722/can-http-post-be-limitless and https://serverfault.com/questions/151090/is-there-a-maximum-size-for-content-of-an-http-post – zedfoxus Mar 09 '21 at 14:01
1 Answers
5
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.)

Ilya Oblomo
- 104
- 4