Google Adwords API Sitelink Extension Reporting
Is it possible through the Google Adwords v201809 API to get data on Sitelink extensions?
I haven't seen that as one of the available reports.
Thanks, Jared
Tony-Marketing-API.cn is a vibrant community dedicated to Facebook, Meta,Google Ads api, app development, Instagram, and related technologies. It offers valuable bug solutions, troubleshooting cases, and problem-solving strategies shared by users. Stay updated with real-world solutions, development tips, and the latest trends in digital marketing and app development.
Is it possible through the Google Adwords v201809 API to get data on Sitelink extensions?
I haven't seen that as one of the available reports.
Thanks, Jared
Ad extensions such as sitelinks are handled via the concept of feeds in the Adwords API.
You'll have to use the PLACEHOLDER_FEED_ITEM_REPORT to get statistics on feed items. To only get metrics for sitelinks, add the accoring predictate to your report definition.
Also take a look at the IsSelfAction dimension that help you distinguish between a click on the extension itself vs. a click on the ad.
As an example, this query returns a list of all sitelinks and the corresponding impressions and clicks:
SELECT CampaignName, PlaceholderType, AttributeValues, Impressions, Clicks FROM PLACEHOLDER_FEED_ITEM_REPORT WHERE IsSelfAction = True AND PlaceholderType = 1This gave me the information I needed! I just had to parse out the JSON in the AttributeValues field.
That's great to hear. Would you mind accepting the answer then? :)