Any guidance for large batch runs?
  • Prefer callbackUrl so long-running states don’t tie up your HTTP threads.
  • Use retryId polling 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