Print

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 limits data for privacy reasons; 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.

Contents

Before You Begin

Click here to install the API Connector add-on from the Google Marketplace.

Part 1: Connect to the LinkedIn Ads API

The easiest way to get started with the LinkedIn Ads API is through API Connector’s built-in integration.

LinkedIn has created a new versioned API, and deprecated several features of the old Ad Analytics API (info). In API Connector, the old API is now marked as LinkedIn Ads (deprecated) in the application menu, and will be removed in March 2024 when LinkedIn removes support. Please switch to the updated API as soon as possible to avoid disrupting your reports.
  1. Select LinkedIn Ads from the drop-down list of applications
    linkedinads-application
  2. Under Authorization, click Connect to LinkedIn
    linkedinads-authorization
  3. You will be directed to LinkedIn and asked to authorize the connection. Click Allow.
    linkedinads-allow
  4. You'll now be returned to your Google Sheet, and can verify that your LinkedIn API connection is active.

Part 2: Pull Data from LinkedIn Ads to Sheets

Now that we’re connected, let’s pull some data into Sheets.

  1. In the Endpoint section, choose /adAnalytics?q=statistics to get reporting data in your sheet.
  2. In the Request parameters section, select one or more of your accounts from the dropdown menu.
  3. Fill in the other required parameters: dateRange, fields, pivots, and timeGranularity. For dateRange, select fixed dates from the calendar input or use dynamic values from the cells in your sheet.
    linkedinads-dateinputs
  4. Click Edit fields to select just the fields you want and assign them to specific columns in your report.
  5.  Run your request.
    linkedinads-statsresponse

Part 3: Create a Custom API Request

Alternatively, you can create a custom request instead of using API Connector’s built-in integration, using any of the API URLs shown in the API documentation

Example: Fetch metrics with Statistics Finder

Here's a complete example using LinkedIn's X-Restli protocol and their new versioned API. The LinkedIn Statistics Finder method allows you to include multiple "pivots" (i.e. dimensions). Substitute in your own account ID where it says your_account_id, and your own dates into the dateRange parameter..

  • Application: Custom
  • Method: GET
  • Request URL: https://api.linkedin.com/rest/adAnalytics?q=statistics&fields=pivotValues,dateRange,clicks,impressions,likes,shares,costInLocalCurrency&pivots=List(CREATIVE,CAMPAIGN,ACCOUNT)&dateRange=(start:(day:01,month:08,year:2023),end:(day:31,month:08,year:2023))&timeGranularity=DAILY&accounts=List(urn%3Ali%3AsponsoredAccount%3Ayour_account_id)
  • OAuth: LinkedIn Ads
  • Headers
    • X-Restli-Protocol-Version: 2.0.0
    • LinkedIn-Version: 202311
linkedinads-statisticsresponse

An earlier version of this article showed how to expand the URNs (IDs) returned in the elements.pivotValues fields. API Connector will now automatically expand URNs, so no further requests are needed. (For reference, the original information has been moved into the appendix.)

Part 4: Handle Pagination

By default, LinkedIn's /adAnalytics endpoint will return just 1000 records. To return more, apply API Connector's automatic pagination handling as follows

  • Pagination: next page URL
  • Next page path: paging.links.href
  • Run until: choose when to stop fetching data
    linkedinads-nextpage

Part 5: Notes

  • Use the visual field editor to re-arrange columns (just click Edit Fields before running your request).
  • LinkedIn sends back dates split into separate year, month, and day fields. To transform these into a regular Sheets date, set a data destination of cell B1, and then add the following function into cell A1: =arrayformula(if(J2:J<>"", date(J2:J,H2:H,I2:I),"")). The function assumes years are in column J, months are in H, and days are in I; adjust as needed.
  • To view or manage the connection on LinkedIn, click here: https://www.linkedin.com/psettings/permitted-services

Part 6: API Documentation

Official API documentation: https://docs.microsoft.com/en-us/linkedin/marketing/integrations/ads-reporting/ads-reporting

Part 7: LinkedIn Reporting Template

Here's a template you can use to fetch an ads performance summary that looks like this:

The template also contains preset requests for ads performance broken down by various facets, as well as demographic reports. Check the "Information" tab to get started.

Report template link: Click here for a copy

Appendix: Expand Campaign and Creative Names

LinkedIn's API is rather inconveniently designed as it generally returns URNs (IDs) instead of names. For example, if you run the custom Statistics Finder request shown above, the response will include the creative, campaign, and account URNs. To convert these URNs into meaningful names, we need to make a separate requests, using the LinkedIn URN resolution lookup table to determine the correct endpoint.

API Connector now runs these separate requests automatically in the background to fetch associated names, but the following information is presented for reference, in case you're writing your own script, using an API client outside of API Connector, or want to fetch additional creative details like landing page URLs.

Example 1: Fetch campaign names with URN Resolution

For this example, we'll look at the elements.pivotValues field reading urn:li:sponsoredCampaign:xxxxxxxx . From the URN resolution lookup table, we can see that the sponsoredCampaign string means we call the /adCampaigns endpoint.

Plug your account ID and campaign ID into the request URL below.

  • Application: Custom
  • Method: GET
  • Request URL: https://api.linkedin.com/rest/adAccounts/your_account_id/adCampaigns/your_campaign_id
  • OAuth: LinkedIn Ads
  • Headers
    • X-Restli-Protocol-Version: 2.0.0
    • LinkedIn-Version: 202311

As you can see, that returned the campaign name.

Example 2: Fetch ad creative names and URLs with the content reference field

OK, now it gets a bit complicated 😀

  1. Create a statistics request in which pivots=CREATIVE and fields=pivotValues. This will produce a response that contains URN values that look like this urn:li:sponsoredCreative:xxxxxxxxx
    linkedinads-creativeurn
  2. Now, just as in the above example for sponsoredCampaign, use the URN resolution table to find the correct endpoint for sponsoredCreative expansion. That page shows that it's /creatives.
  3. That means you need to run a request to the /creatives endpoint, plugging in your own account ID and the creative ID from the URN, like this: https://api.linkedin.com/rest/adAccounts/your_account_id/creatives/urn%3Ali%3AsponsoredCreative%3Ayour_creative_id
  4. The response will look like this. Note the value in the content.reference field as we need that next:
    linkedinads-creativeresponse
  5. Unlike the /adAccounts and /adCampaigns endpoints, running a request to the /creatives endpoint does not directly return the ad name. Instead, you need to check the content.reference field, and make a second call to the following "sub content" endpoints based on that value (source: cheat sheet provided by LinkedIn).
    content.reference examplesub content endpoint
    nonenot needed
    urn:li:adInMailContent:1020065https://api.linkedin.com/rest/inMailContents/urn%3Ali%3AadInMailContent%3A1020065
    urn:li:share:6334225903081525248https://api.linkedin.com/rest/posts/urn%3Ali%3Ashare%3A6334225903081525248
    urn:li:ugcPost:6364155080052219904https://api.linkedin.com/rest/posts/urn%3Ali%3AugcPost%3A6364155080052219904
  6. For example, my content.reference value above contains the share string, so it corresponds to the https://api.linkedin.com/rest/posts/urn%3Ali%3Ashare%3A6334225903081525248 example endpoint. If I plug in my own reference ID, it returns the ad name.
    linkedinads-adName
  7. Ta-da! That's the name of my ad (and the rest of the response contains additional creative fields). Hopefully this is useful/interesting for those confused or unsure of how to fetch ad creative names, links, and other information from the new LinkedIn APIs.

50 thoughts on “Import LinkedIn Ads Data to Google Sheets”

  1. 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?

    Reply
    • Hey Kat! Thanks for the message. Can you please try this?
      https://api.linkedin.com/v2/adCampaignsV2/?q=search

      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.
      Edit: you can get this all in one go using projection, I put some examples above.
      Edit 2: LinkedIn has now deprecated their v2 API as well as projection, so you need to run a separate request for each URN to fetch its associated value. I updated the custom request section with info on how that works, and we updated our preset integration to make those fetches automatically in the background.

      Reply
  2. Hi I was hoping you might be able to give me some guidance.
    I have all the data coming in fine, GREAT JOB, but i'm not able to pull any lead or conversion data from an Ad Campaign that is counting conversions as a download from LinkedIn itself.
    Do you have any ideas the ExternalConversions won't work because its happening on LinkedIn. Thanks in Advance.

    Reply
    • If you click this #metrics-available link, you can see all the metrics that LinkedIn provides. I just looked through and some of these look they might be what you're looking for: actionClicks, adUnitClicks, cardClicks, clicks, companyPageClicks, landingPageClicks, oneClickLeadFormOpens, oneClickLeads, totalEngagements. If you check the link you can see the descriptions of each metric, so please check and see if they get you what you need. If so, you'd just add them into the fields parameter of your request URL. Let me know if that works or you have any questions.

      Reply
  3. I cant seem to do a POST request using LinkedIn Connection?
    What is the reason for this? Is it because it is a paid feature or something else?

    Reply
    • Hey Ben, this is because LinkedIn's API requires approval for each specific scope (permission). API Connector limits the scopes it requests to r_ads, r_ads_reporting, and r_basicprofile, which only allow getting, not posting, data. Sorry for the inconvenience. One option would be for you to create your own custom OAuth2 connection to Linkedin, then you could request whatever scopes you need. Or could you please let me know a bit more about what you're trying to do? I will consider requesting additional scopes in the future.

      Reply
      • Hi Ana, I'm looking to generate many ads & campaigns in bulk for an ABM use case where we cite a company name. I have a Custom App with the necessary permissions.
        Maybe I can connect using that Connection using your custom Connection option?

      • Yeah, if you've already made your app on LinkedIn's side, you should be able to set up API Connector's custom OAuth2 connection like this:
        Name: Custom LinkedIn
        Authorization Base URL: https://www.linkedin.com/oauth/v2/authorization?scope=r_ads%2Cr_ads_reporting%2Cr_basicprofile (add on other scopes here)
        Token URL: https://www.linkedin.com/oauth/v2/accessToken
        Client ID: provided by LinkedIn
        Client Secret: provided by LinkedIn

        Custom OAuth gets added in the Manage Connections screen. As long as you add your ad management scopes to the base URL, you will be able to access whatever you need in LinkedIn's API. Can you please try that and see how it goes?

      • 1) The authorization base URL should be encoded, can you please try this instead?
        https://www.linkedin.com/oauth/v2/authorization?scope=r_ads%2Cr_ads_reporting%2Cr_basicprofile
        2) For the redirect_uri, please make sure you've given them the correct URL. From what you wrote above it sounds like you may be mixing up the authorization base URLs with the redirect URL. The redirect URL is a URL that you provide to LinkedIn, it should be https://script.google.com/macros/d/12COOkin8nodCH7fZGIBu0D2jWY8-AEA0uvElt4Ph4wRbLUD4wslqQUfG/usercallback
        Let me know how that goes or feel free to send a message if you're still stuck.

  4. You can get it via the projection and pivotValue~(localizedName) parameters, like this:
    https://api.linkedin.com/v2/adAnalyticsV2?q=analytics&dateRange.start.year=2021&dateRange.start.month=5&dateRange.start.day=28&dateRange.end.year=2021&dateRange.end.month=9&dateRange.end.day=30&timeGranularity=MONTHLY&accounts=urn:li:sponsoredAccount:502849368&pivot=MEMBER_COMPANY&projection=(*,elements*(externalWebsiteConversions,dateRange(*),impressions,landingPageClicks,likes,shares,costInLocalCurrency,approximateUniqueImpressions,pivot,pivotValue~(localizedName)))&fields=externalWebsiteConversions,dateRange,impressions,landingPageClicks,likes,shares,costInLocalCurrency,pivot,pivotValue

    Reply
  5. It should be similar to the examples above, but with fields that make sense with the Conversions pivot, e.g.
    https://api.linkedin.com/v2/adAnalyticsV2?q=analytics&pivot=CONVERSION&dateRange.start.day=1&dateRange.start.month=1&dateRange.start.year=2021&timeGranularity=DAILY&accounts[0]=urn:li:sponsoredAccount:502849368&fields=conversionValueInLocalCurrency,externalWebsiteConversions,externalWebsitePostClickConversions,externalWebsitePostViewConversions,viralExternalWebsiteConversions,viralExternalWebsitePostClickConversions,viralExternalWebsitePostViewConversions
    Let me know if that works for you!

    Reply
  6. Does https://api.linkedin.com/v2/adCreativesV2?q=search work for you? Or can you please share the URL you're using for campaigns so I can better understand what you mean?

    Reply
  7. Hi Ana,
    thanks for your quick reply.

    This call still gives empty result, there is no error but the cells are empty. Could it be because we don't have any Text Ads? The most we have are Sponsored Content. I read the post you sent as well, but I don't know how to use projection in this case. Could you help? Thanks in advance.

    Reply
    • Yeah it looks like sponsored content requires a different kind of call. You'll need to do it like this:
      1) get your ad creatives for a specific campaign: https://api.linkedin.com/v2/adCreativesV2?q=search&search.campaign.values[0]=urn:li:sponsoredCampaign:11111111
      2) It will return a field called elements.reference. Plug that value into a URL like this: https://api.linkedin.com/v2/adDirectSponsoredContents/urn:li:ugcPost:11111111
      That will return the name of your sponsored content.
      This is really a very awkward and inconvenient API. Maybe there's an easier way but their documentation is too confusing for me to figure out 😛

      Reply
  8. Hi. I have built a request for data with Account and Campaign pivots for multiple accounts - I am observing that the projection decoration does only work for single accounts - so now I do multiple requests for each account to get account + campaign details. Have you observed this too?

    Reply
      • Single accounts request URL (= the one I am working with now):

        https://api.linkedin.com/v2/adAnalyticsV2?q=statistics&dateRange=(start:(day:1,month:1,year:2020))&timeGranularity=MONTHLY&pivots=List(CAMPAIGN,ACCOUNT)&fields=dateRange,impressions,clicks,costInLocalCurrency,costInUsd,totalEngagements,likes,comments,follows,shares,companyPageClicks,landingPageClicks,opens,externalWebsiteConversions,pivot,pivotValues&accounts=List(urn%3Ali%3AsponsoredAccount%3A${accountId})&count=500&projection=(*,elements*(*,pivotValues(*~sponsoredCampaign(id,name,type,status)~sponsoredAccount(id,name,type,status))))

        -

        URL with a multiple advertising accounts - where I do not receive any data from the projected pivot fields:

        https://api.linkedin.com/v2/adAnalyticsV2?q=statistics&dateRange=(start:(day:1,month:1,year:2020))&timeGranularity=MONTHLY&pivots=List(CAMPAIGN,ACCOUNT)&fields=dateRange,impressions,clicks,costInLocalCurrency,costInUsd,totalEngagements,likes,comments,follows,shares,companyPageClicks,landingPageClicks,opens,externalWebsiteConversions,pivot,pivotValues&accounts=List(urn%3Ali%3AsponsoredAccount%3A${accountId1},urn%3Ali%3AsponsoredAccount%3A${accountId2},urn%3Ali%3AsponsoredAccount%3A${accountId3})&count=500&projection=(*,elements*(*,pivotValues(*~sponsoredCampaign(id,name,type,status)~sponsoredAccount(id,name,type,status))))

      • Both requests actually worked fine for me, I got the projected fields back even with multiple account IDs. I wonder if the issue you're having is related to encoding. Their docs say "The values and the resource parameters must be URL encoded but not the , grouping the fields and values. The single resource key had the , encoded because it was part of the whole value."

    • Sure, you can use the costInLocalCurrency and costInUsd fields, e.g. https://api.linkedin.com/v2/adAnalyticsV2?q=analytics&timeGranularity=MONTHLY&dateRange.start.year=2021&dateRange.start.month=1&dateRange.start.day=1&dateRange.end.year=2021&dateRange.end.month=2&dateRange.end.day=1&pivot=CAMPAIGN&fields=costInLocalCurrency,costInUsd,dateRange,pivotValues&accounts[0]=urn:li:sponsoredAccount:123456789

      Reply
    • It depends on the specific ad type, but generally you can get it through projection or by directly calling the adCreatives endpoint: https://api.linkedin.com/v2/adCreativesV2?q=search

      Reply
    • This should work:
      1. After you run https://api.linkedin.com/v2/adCreativesV2?q=search you should see a field called elements.reference, where the values look like urn:li:ugcPost:6861589830204235777.
      2. Take the value you're interested in and plug it into this URL like this:
      https://api.linkedin.com/v2/adDirectSponsoredContents/urn:li:ugcPost:6861589830204235777

      When I do that I get a video title back, please check if it works for you. You can also loop through multiple ugcPost ideas to get all the video names.

      Reply
  9. Hi Ana,
    last week you supported me to connect Linkedin Pages and it has worked correctly. I am currently trying to connect Linkedin Ads but when I connect it, in Linkedin Pages requests I get an error: {"serviceErrorCode":65601,"message":"The token used in the request has been revoked by the user","status ":401}. When I connect Linkedin Pages again I get the same error for Ads requests. Is there a problem with having both connected simultaneously?

    I really appreciate your support.

    Reply
    • I just tested and was able to connect and run requests from both LinkedIn Ads and LinkedIn Pages, so I'm not yet sure what the issue is. Are you connecting each connection to the same LinkedIn account?

      Reply
    • You can enter projection=(,elements(*,pivotValue~())) to retrieve ad names and other metadata. You can find the projection field in the integration menu, or enter it manually in a custom request.
      Edit: projection has been deprecated, and API Connector will now automatically fetch these names by running additional requests in the background.

      Reply
  10. @Ana, thanks for good example. i am trying to get all the performance metrics for all my campaing and using this endpoint :
    https://api.linkedin.com/v2/adAnalyticsV2?q=campaign&dateRange.start.day=01&dateRange.start.month=01&dateRange.start.year=2023&dateRange.end.day=31&dateRange.end.month=01&dateRange.end.year=2023&pivot=DEMOGRAPHICS&fields=impressions,clicks,ctr,socialActions,videoViews,cpc,cpm,conversions,conversionRate,averageEngagement,engagementRate,frequency,spend

    But does not work, where am i going wrong?

    Reply
    • Looks like you're using the old v2 endpoints, which are now deprecated. Please check the custom request example above for an example using their new versioned API. You can also try using our preset integration instead as it's a lot easier to set up the requests.

      Reply
      • Connect to LinkedIn as shown here, and then select LinkedIn from the dropdown menu as shown here. Just let me know if anything isn't clear and I'll be happy to help.

  11. These are the fields that i want to bring into my worksheet.
    Spent,Impressions,Clicks,Average CTR,Bid,Average CPM,Average CPC,Conversions,Cost Per,Conversion,Leads,Cost Per Lead

    /adAnalytics?q=analytics is correct. Pivot =ACCOUNT but in the fields i cannot find the fields mentioned above. How do i achieve this?

    Reply
  12. 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

    Hi Ana, can you help me revise the above to get the

    all campaign names
    all creative names
    daily segments
    and dates by cell reference?

    Reply
    • There's no way to get all campaign & creative names in one API call, since they return "urn" IDs from the main reporting endpoints, which then need to be looked up using additional endpoints to get the associated names. LinkedIn gave me a "cheat sheet" which you can see here, and I added some more detailed instructions on using it in the custom request section.

      I suggest using API Connector's built-in integration, because this is a very complex API that's not easy to understand or customize. In addition, please note that the example you've provided uses LinkedIn's deprecated API that will be removed soon.

      Reply
  13. Hey there! Is there any way to search for all Campaign names within a specific Campaign Group?

    Cannot for the life of me get this to work: https://api.linkedin.com/v2/adCampaignsV2?q=search to work, just throws error:
    {"message":"Request would return too many entities. .","status":400}

    Also, alternatively... and this is a lonnnnng shot... any way to extract links from individual ads? Would love to be able to see and parse UTM parameters from listed ads. Thanks!

    Reply
    • {"message":"Request would return too many entities. .","status":400}
      This error occurs when you have more than 1000 records (info).
      Can you please try running that request using API Connector's preset integration instead? (Select LinkedIn Ads > Get Available Campaigns from API Connector's dropdown application menu). That way you'll a) be using LinkedIn's newest API (the v2 syntax you used will be deprecated soon), and b) can set the "count" parameter to 1000 or lower, and use pagination to get all the records.

      any way to extract links from individual ads?
      I think you can also do this using API Connector's preset integration. Select your account, date range, and fields, set pivot to CREATIVE, and set projection to (*,elements*(*,pivotValue~())) . That should retrieve a field named "content.textAd.landingPage" that contains the full landing page URL.

      Reply
  14. I only recieve this as the output when following custom GET request with Linkedin OAUTH copied and pasted from the example. This is what it was giving me previously with no changes when the query criteria changed

    paging.start paging.count paging.links.1 elements.1
    0 10

    Reply
    • That means the request worked but LinkedIn didn't send back any data. I'd double check that the account you authenticated with has ads data available for the time period you've selected.

      Reply

Leave a Reply to Ben Cancel reply

Jump To