Import LinkedIn Ads Data to Google Sheets
In this guide, we will pull data from the LinkedIn API directly into Google Sheets, using the API Connector add-on for Sheets. The LinkedIn API only supports authentication via OAuth2, so we’ll be connecting using API Connector’s built-in OAuth2 integration for LinkedIn Ads. The LinkedIn API is extremely limited and blocked off; don’t expect a way to pull out profile information for anyone but yourself. However, this API is perfect for pulling out advertising performance data from the LinkedIn Ads Reporting API.
OAuth2 is a paid feature, so please upgrade your account or install API Connector for a free trial.
CONTENTS
- Before You Begin
- Part 1: Connect to the LinkedIn Ads API
- Part 2: Create a LinkedIn API Request URL
- Part 3: Pull LinkedIn Profile Data into Sheets
- Part 4: More Example API URLs
- Part 5: Notes
BEFORE YOU BEGIN
Click here to install the API Connector add-on from the Google Marketplace.
PART 1: CONNECT TO THE LINKEDIN ADS API
If you haven’t connected API Connector to LinkedIn before, you’ll first need to initiate the connection as follows:
- Open up Google Sheets and click Add-ons > API Connector > Manage Connections.
- In the list of available connections, find LinkedIn Ads and click Connect.
- You will be directed to LinkedIn and asked to authorize the connection. Click Allow.
- You’ll now be returned to your Google Sheet, and can verify that your LinkedIn API connection is active in the Connections screen.
PART 2: CREATE A LINKEDIN API REQUEST URL
For our first request, we’ll get some basic information about your own LinkedIn account.
- API root: https://api.linkedin.com/v2
- Endpoint: /me
Putting it together, we get the full API Request URL.
https://api.linkedin.com/v2/me
PART 3: PULL LINKEDIN API DATA INTO SHEETS
We can now enter our values into API Connector and start importing LinkedIn data into Google Sheets.
- In the Create Request interface, enter the Request URL we just created.
- We don’t need any headers for this API, so just leave that section blank.
- Under Authentication, choose LinkedIn Ads from the Connections dropdown.
- Create a new tab and click ‘Set current’ to use that tab as your data destination.
- Name your request and click Run. A moment later you’ll see some information about your account populate your sheet.
PART 4: MORE EXAMPLE API URLS
Now that we’ve validated the connection, we can start pulling some more data. You can access the full list of metrics available in the ads reporting API here, but if you just want to get started, you can try the following URLs. I’m not too familiar with the LinkedIn API, so this is just what I dug up in an hour or two of playing around. If you find any other interesting endpoints, please let me know!
- List of ad accounts (note the ID that gets returned in the
elements » id
field, we can use this for subsequent requests).https://api.linkedin.com/v2/adAccountsV2?q=search&count=10
- Ad account performance, daily from 2019 (substitute in the account ID value from
elements » id
where it says 502849368). Note that LinkedIn now requires a “fields” parameter containing a list of the fields you’d like to retrieve.https://api.linkedin.com/v2/adAnalyticsV2?q=analytics&pivot=ACCOUNT&dateRange.start.day=1&dateRange.start.month=1&dateRange.start.year=2019&timeGranularity=DAILY&accounts[0]=urn:li:sponsoredAccount:502849368&fields=externalWebsiteConversions,dateRange,impressions,landingPageClicks,likes,shares,costInLocalCurrency,pivot,pivotValue
- Suggested bid amounts for a campaign targeting LinkedIn members between the ages of 18 and 24
https://api.linkedin.com/v2/adBudgetPricing?account=urn:li:sponsoredAccount:502849368&bidType=CPM&campaignType=SPONSORED_INMAILS&matchType=EXACT&q=criteria&target.includedTargetingFacets.ageRanges[0]=AGE_18_24
- List of ad campaigns (use Compact report style for cleaner output):
https://api.linkedin.com/v2/adCampaignsV2/?q=search&count=10
- Campaign reporting for a specific campaign, daily from 2019 (where it says 124782804, substitute in the campaign ID value retrieved from the list of ad campaigns):
https://api.linkedin.com/v2/adAnalyticsV2?q=analytics&pivot=CAMPAIGN&dateRange.start.day=1&dateRange.start.month=1&dateRange.start.year=2019&timeGranularity=DAILY&campaigns[0]=urn:li:sponsoredCampaign:124782804&fields=externalWebsiteConversions,dateRange,impressions,landingPageClicks,likes,shares,costInLocalCurrency,pivot,pivotValue
PART 5: NOTES
- Some useful “pivot” (aka breakdown) values include the following (this, and other info comes from https://docs.microsoft.com/en-us/linkedin/marketing/integrations/ads-reporting/ads-reporting):
- COMPANY – Group results by advertiser’s company.
- ACCOUNT – Group results by account.
- CAMPAIGN – Group results by campaign.
- CREATIVE – Group results by creative.
- CONVERSION – Group results by conversion.
- There are 2 types of calls you can make to the Ads Reporting API:
q=analytics
andq=statistics
.q=analytics
is the method used in the examples above, and is used when you are only breaking your data down by a single pivot value. If you have two pivot values, use theq=statistics
query string. - As of September 30, 2020, LinkedIn requires that you include the names of fields in your query, up to 15 at a time. You can do so by appending a query string like this:
&fields=externalWebsiteConversions,dateRange,impressions,landingPageClicks,likes,shares,costInLocalCurrency,pivot,pivotValue
Can you post an example api using the q=statistics call? I’m trying to pull in multiple pivot values but I can’t seem to get it to work.
Thanks
Hey Brian! Can you please try something like this?
https://api.linkedin.com/v2/adAnalyticsV2?q=statistics&pivots[0]=CAMPAIGN&pivots[1]=CREATIVE&dateRange.start.day=1&dateRange.start.month=1&dateRange.start.year=2019&timeGranularity=DAILY&campaigns[0]=urn:li:sponsoredCampaign:124782804&fields=externalWebsiteConversions,dateRange,impressions,landingPageClicks,likes,shares,costInLocalCurrency,pivot,pivotValues
That seemed to work for me but I have a pretty limited data set to test on. Let me know how it goes.
This worked perfectly.
Thanks!
Hey, can you please help me get the name of an ad/creative?
I’ve tried using https://api.linkedin.com/v2/adCreativesV2/ but it doesn’t return the creative’s name.
Thanks!
Hi there, can you please try this URL and see if it gets you what you’re looking for?
https://api.linkedin.com/v2/adCreativesV2?q=search
Hi! This was incredibly helpful. Unfortunately all the campaign, campaign groups, creatives, and companies are coming in as numbers instead of using the actual names. So it’s very hard to match up which campaign goes with which campaign code. Is there an API that pulls in the name instead of just the value?
Hey Kat! Thanks for the message. Can you please try this?
https://api.linkedin.com/v2/adCampaignsV2/?q=search&count=100
I believe it will return a list of all your campaigns with both names and IDs, so you can use that to match up the data from the other queries. There might be a better way but that’s how I did it :p. Let me know if that works for you.