Why batch pricing should match single-request pricing
A thousand lookups sent one at a time and a thousand lookups sent as a batch are the same amount of work. The price should not depend on how they were packaged.
A thousand lookups sent one at a time and a thousand lookups sent as a batch are the same amount of work. The price should not depend on how they were packaged.
A batch call with a thousand addresses still does a thousand separate lookups. Counting it as one request would just hide where the real usage actually went.
A single call with a hundred addresses inside it counts as a hundred requests, not one. Here is why we count bulk calls by item instead of by call.