[Deprecated] Bulk Request Limitations
Currently, due to infrastructure constraints, there is a 1MB limit on API responses. Most bulk requests will not hit this limit, however an 80-100 record bulk request that returns rich records may approach or go over this limitation.
There are a few ways to ensure you never run into this limitation:
-
Add the
Accept-Encoding: gzip
header to your request headers; the responses will be gzip compressed and around 5x smaller. -
Use the data_include feature to only return fields you need.
-
Enrich less records per call. Enriching around 50 records instead of 100 should bypass this limitation.
Updated 11 months ago