AI-generated Key Takeaways
- 
          Retrieve responsive search ads by calling GoogleAdsService.SearchStream.
- 
          Use a query that filters ad types to RESPONSIVE_SEARCH_AD.
- 
          An example query demonstrates selecting ad group and ad information along with headlines and descriptions. 
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