add a wait/delay node inside your loop. set it to 100ms (or whatever interval stays under the rate limit). so the loop processes one record, waits 100ms, then processes the next
for 10 requests/second you want at least 100ms between requests. i usually add a little buffer and do 150ms to be safe
alternatively if the API supports batch requests, accumulate 50-100 items and send them in one call. way more efficient than individual calls with delays