Any guidance for large batch runs?
- Prefer
callbackUrlso long-running states don’t tie up your HTTP threads. - Use
retryIdpolling if you don’t have webhooks yet. - When speed matters more than recency, start with
liveData=false(cache) for breadth, then re-run “no hits” live. - Expect variance by state (e.g., IL is slower); design queues with backoff and idempotency.
testing-and-trialing
