Interested in sharing your feedback about the Google Ads API?
Sign up to be invited to participate in user research!
Retrieving Responsive Search Ads
To retrieve the responsive search ads you've created, call the
GoogleAdsService.SearchStream
method with a query that filters ad types to
RESPONSIVE_SEARCH_AD
.
For example:
SELECT
ad_group.id,
ad_group_ad.ad.id,
ad_group_ad.ad.responsive_search_ad.headlines,
ad_group_ad.ad.responsive_search_ad.descriptions,
ad_group_ad.status
FROM ad_group_ad
WHERE ad_group_ad.ad.type = RESPONSIVE_SEARCH_AD
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-03-03 UTC.
[null,null,["Last updated 2025-03-03 UTC."],[[["Retrieve your created responsive search ads using the `GoogleAdsService.SearchStream` method and a query that filters for `RESPONSIVE_SEARCH_AD` type."],["The provided example query selects ad group and ad IDs, headlines, descriptions, and status for responsive search ads."]]],[]]