You need to debounce your requests to your endpoint. You cannot hit any API so many times without waiting on the results and moving on to the next one. In a sense you either queue your calls from the frontend or on the backend, that isn’t something I think CoCart should handle. If you are using javascript you can await each API call. Alternatively you can debounce the requests (more info here).