What’s changing?
Last year, we introduced query_resource_consumption
metric as a way to measure how expensive a Google Ads API query is. However, this cost was not returned when the query results were empty.
Starting the week of August 4, 2025 , we will modify the behavior of both the Search
and SearchStream
methods of GoogleAdsService
in all the API versions to return the query_resource_consumption
metric and the field_mask
field even when the query results are empty. The responses for empty query results will change as follows:
Method
Old response
New response
Search
{
"fieldMask": "..."
}
{
"fieldMask": "...",
"query_resource_consumption": 123
}
SearchStream
[]
{
"fieldMask": "...",
"queryResourceConsumption": 206
}
What do I need to do?
If you are using Search
and SearchStream
methods to download Google Ads API reports, make sure your application can handle the modified response.
If you have any questions or need help, check out the Google Ads API support page for options.
Reach out to the Google Ads product support team for any questions related to account policies.
- Anash P. Oommen , Google Ads API Team