Looping Through Large JSON IOC Objects (ThreatFox get_iocs) Stored as File (>8KB)

I’m pulling data from the ThreatFox get_iocs endpoint using an HTTP request plugin. The response returns a list of IOC objects, and one field, "body_objects", contains file-related data.

When I create a loop to iterate through all items in the list, the iteration stops before reaching the expected count. Could this be because "body_objects" is treated as a file or stream rather than a normal in-memory object? Or is there another reason why the loop would terminate early?

Has anyone experienced this behavior or have suggestions on how to handle "body_objects" properly during iteration?