{"id":1308,"date":"2025-02-21T10:02:29","date_gmt":"2025-02-21T10:02:29","guid":{"rendered":"https:\/\/lix-it.com\/blog\/?p=1308"},"modified":"2025-02-21T10:02:30","modified_gmt":"2025-02-21T10:02:30","slug":"get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc","status":"publish","type":"post","link":"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/","title":{"rendered":"Get LinkedIn Post History with the Lix &#8220;Get Posts&#8221; API\ufffc"},"content":{"rendered":"<span class=\"rt-reading-time\" style=\"display: block;\"><span class=\"rt-label rt-prefix\">Reading Time: <\/span> <span class=\"rt-time\">2<\/span> <span class=\"rt-label rt-postfix\">minutes<\/span><\/span>\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Want to access the <strong>entire LinkedIn post history<\/strong> of a user? The<a href=\"https:\/\/lix-it.com\/docs\/#get-posts\"> <strong>Lix Get Posts API<\/strong><\/a> allows you to retrieve up to <strong>50 posts per page<\/strong>, providing structured data on <a href=\"http:\/\/www.linkedin.com\">LinkedIn<\/a> content at scale. Whether you&#8217;re conducting <strong>social media analysis, lead intelligence, or competitive research<\/strong>, this API streamlines the process of collecting LinkedIn posts from any public profile.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2><strong>What is the Get Posts Endpoint?<\/strong><\/h2>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>The <strong>Get Posts<\/strong> endpoint retrieves a <strong>LinkedIn user&#8217;s post history<\/strong>, allowing you to collect up to <strong>50 posts per request<\/strong>. This is perfect for:<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>\ud83d\udcc8 <strong>Social Listening &amp; Trend Analysis<\/strong> \u2013 Track influencers, competitors, or industry leaders and analyze engagement over time.<br>\ud83d\udcca <strong>Content Aggregation &amp; Monitoring<\/strong> \u2013 Build feeds, dashboards, or research datasets based on public LinkedIn activity.<br>\ud83c\udfaf <strong>Lead &amp; Account Research<\/strong> \u2013 Understand a person\u2019s interests, industry insights, and thought leadership.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2><strong>How to Use the Lix Get Posts API<\/strong><\/h2>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>To use this endpoint, you\u2019ll need a <strong>Lix account<\/strong> and an API key. Each request <strong>uses 1 Standard Credit<\/strong> and retrieves up to <strong>50 posts per page<\/strong>.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3><strong>Endpoint Details<\/strong><\/h3>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>Request:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code>GET https:\/\/api.lix-it.com\/v1\/person\/li\/activity\/posts\n<\/code><\/code><\/pre>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3><strong>Required Parameter<\/strong><\/h3>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<ul><li><strong>profile_id<\/strong> \u2013 The <strong>LinkedIn profile ID<\/strong> of the user whose posts you want to retrieve.<ul><li>Example: If the LinkedIn profile URL is <code>https:\/\/www.linkedin.com\/in\/username<\/code>, then the <code>profile_id<\/code> is <code>username<\/code>.<\/li><\/ul><\/li><\/ul>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3><strong>Optional Parameters<\/strong><\/h3>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<ul><li><strong>start<\/strong> \u2013 The index of the first post to return (default: <code>0<\/code>). Used for <strong>pagination<\/strong> when fetching more than 50 posts.<\/li><li><strong>viewer_id<\/strong> \u2013 The LinkedIn ID of the account you want to use to view this data. If omitted, the request retrieves publicly available posts.<\/li><\/ul>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2><strong>Example API Request (Python)<\/strong><\/h2>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code><code>import requests\n\nurl = \"https:\/\/api.lix-it.com\/v1\/person\/li\/activity\/posts?profile_id=alfie-lambert&amp;start=0\"\n\nheaders = {\n  'Authorization': \"YOUR_LIX_API_KEY_HERE\"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n<\/code><\/code><\/pre>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2><strong>Example API Response<\/strong><\/h2>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>A successful request returns JSON data containing <strong>an array of posts<\/strong> and <strong>pagination metadata<\/strong>, like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>json\n<code>{\n    \"posts\": &#91; Post ],\n    \"paging\": { \"count\": 25, \"start\": 0, \"total\": 2500 }\n}\n<\/code><\/code><\/pre>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3><strong>Breaking Down the API Response:<\/strong><\/h3>\n\n\n\n<ul><li><strong>posts[]<\/strong>: An array containing up to <strong>50 LinkedIn posts per request<\/strong>.<\/li><li><strong>paging<\/strong>: Metadata about the pagination, including:<ul><li><strong>count<\/strong> \u2013 The number of posts returned in the response.<\/li><li><strong>start<\/strong> \u2013 The index of the first returned post.<\/li><li><strong>total<\/strong> \u2013 The total number of posts available for this user.<\/li><\/ul><\/li><\/ul>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2><strong>Why Use the Lix Get Posts API?<\/strong><\/h2>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Unlike manual LinkedIn searches, this API allows you to <strong>automate<\/strong> post retrieval, making it an ideal tool for:<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>\ud83d\ude80 <strong>Social Media Intelligence<\/strong> \u2013 Track post engagement, content themes, and trends over time.<br>\ud83d\udce2 <strong>Marketing &amp; Outreach<\/strong> \u2013 Understand a prospect\u2019s latest discussions and tailor your messaging accordingly.<br>\ud83d\udcda <strong>Content Research &amp; Curation<\/strong> \u2013 Aggregate LinkedIn posts into reports, dashboards, or AI-driven content tools.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>With <strong>scalability<\/strong> built-in, the Lix API can process thousands of profiles efficiently, ensuring your insights are <strong>timely and accurate<\/strong>.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2><strong>Get Started Today<\/strong><\/h2>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Sign in to your <strong>Lix account<\/strong>, grab your free credits, and start extracting <strong>LinkedIn post history<\/strong> with a simple API call. The <strong>Get Posts<\/strong> endpoint is the fastest way to collect LinkedIn content at scale\u2014fueling <strong>analytics, automation, and research<\/strong>.<\/p>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p class=\"qua-blog-post-description\"><span class=\"rt-reading-time\" style=\"display: block;\"><span class=\"rt-label rt-prefix\">Reading Time: <\/span> <span class=\"rt-time\">2<\/span> <span class=\"rt-label rt-postfix\">minutes<\/span><\/span> The Lix Get Posts API allows you to retrieve LinkedIn post history at scale. Perfect for social media intelligence, content monitoring, and lead research, this API fetches up to 50 posts per request, saving time and ensuring accurate insights.<\/p>\n","protected":false},"author":3,"featured_media":1311,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[99,38,24],"tags":[92,40,17,34],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.7.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Get LinkedIn Post History with the Lix &quot;Get Posts&quot; API\ufffc<\/title>\n<meta name=\"description\" content=\"Retrieve LinkedIn post history with the Lix Get Posts API. Analyze engagement trends, and automate content research at scale.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api\ufffc\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Get LinkedIn Post History with the Lix &quot;Get Posts&quot; API\ufffc\" \/>\n<meta property=\"og:description\" content=\"Retrieve LinkedIn post history with the Lix Get Posts API. Analyze engagement trends, and automate content research at scale.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api\ufffc\/\" \/>\n<meta property=\"og:site_name\" content=\"Lix Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-02-21T10:02:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-21T10:02:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lix-it.com\/blog\/wp-content\/uploads\/2025\/02\/Get-LinkedIn-Posts.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Alfie Lambert\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@AlfieLix\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Alfie Lambert\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/\"},\"author\":{\"name\":\"Alfie Lambert\",\"@id\":\"https:\/\/lix-it.com\/blog\/#\/schema\/person\/b2375fe7dfcd61daff8c3d85ca3be832\"},\"headline\":\"Get LinkedIn Post History with the Lix &#8220;Get Posts&#8221; API\ufffc\",\"datePublished\":\"2025-02-21T10:02:29+00:00\",\"dateModified\":\"2025-02-21T10:02:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/\"},\"wordCount\":447,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/lix-it.com\/blog\/#organization\"},\"keywords\":[\"API\",\"data\",\"Guides\",\"linkedin\"],\"articleSection\":[\"API\",\"Data\",\"Guides\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/\",\"url\":\"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/\",\"name\":\"Get LinkedIn Post History with the Lix \\\"Get Posts\\\" API\ufffc\",\"isPartOf\":{\"@id\":\"https:\/\/lix-it.com\/blog\/#website\"},\"datePublished\":\"2025-02-21T10:02:29+00:00\",\"dateModified\":\"2025-02-21T10:02:30+00:00\",\"description\":\"Retrieve LinkedIn post history with the Lix Get Posts API. Analyze engagement trends, and automate content research at scale.\",\"breadcrumb\":{\"@id\":\"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/lix-it.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Get LinkedIn Post History with the Lix &#8220;Get Posts&#8221; API\ufffc\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/lix-it.com\/blog\/#website\",\"url\":\"https:\/\/lix-it.com\/blog\/\",\"name\":\"Lix Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/lix-it.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/lix-it.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/lix-it.com\/blog\/#organization\",\"name\":\"Lix Blog\",\"url\":\"https:\/\/lix-it.com\/blog\/\",\"sameAs\":[],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/lix-it.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/lix-it.com\/blog\/wp-content\/uploads\/2021\/01\/lix-blog-logo@10x-e1610038285991.png\",\"contentUrl\":\"https:\/\/lix-it.com\/blog\/wp-content\/uploads\/2021\/01\/lix-blog-logo@10x-e1610038285991.png\",\"width\":152,\"height\":57,\"caption\":\"Lix Blog\"},\"image\":{\"@id\":\"https:\/\/lix-it.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/lix-it.com\/blog\/#\/schema\/person\/b2375fe7dfcd61daff8c3d85ca3be832\",\"name\":\"Alfie Lambert\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/lix-it.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/21af185f928f0ca2d54eb108980475e7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/21af185f928f0ca2d54eb108980475e7?s=96&d=mm&r=g\",\"caption\":\"Alfie Lambert\"},\"description\":\"Alfie is one of Lix's co-founders and a former growth hacker in the world of data science. Follow him on Twitter (twitter.com\/AlfieLix) or connect on LinkedIn (linkedin.com\/in\/alfie-lambert).\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/alfie-lambert\/\",\"https:\/\/twitter.com\/AlfieLix\"],\"url\":\"https:\/\/lix-it.com\/blog\/author\/alfielix-it-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Get LinkedIn Post History with the Lix \"Get Posts\" API\ufffc","description":"Retrieve LinkedIn post history with the Lix Get Posts API. Analyze engagement trends, and automate content research at scale.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api\ufffc\/","og_locale":"en_GB","og_type":"article","og_title":"Get LinkedIn Post History with the Lix \"Get Posts\" API\ufffc","og_description":"Retrieve LinkedIn post history with the Lix Get Posts API. Analyze engagement trends, and automate content research at scale.","og_url":"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api\ufffc\/","og_site_name":"Lix Blog","article_published_time":"2025-02-21T10:02:29+00:00","article_modified_time":"2025-02-21T10:02:30+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/lix-it.com\/blog\/wp-content\/uploads\/2025\/02\/Get-LinkedIn-Posts.png","type":"image\/png"}],"author":"Alfie Lambert","twitter_card":"summary_large_image","twitter_creator":"@AlfieLix","twitter_misc":{"Written by":"Alfie Lambert","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/#article","isPartOf":{"@id":"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/"},"author":{"name":"Alfie Lambert","@id":"https:\/\/lix-it.com\/blog\/#\/schema\/person\/b2375fe7dfcd61daff8c3d85ca3be832"},"headline":"Get LinkedIn Post History with the Lix &#8220;Get Posts&#8221; API\ufffc","datePublished":"2025-02-21T10:02:29+00:00","dateModified":"2025-02-21T10:02:30+00:00","mainEntityOfPage":{"@id":"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/"},"wordCount":447,"commentCount":0,"publisher":{"@id":"https:\/\/lix-it.com\/blog\/#organization"},"keywords":["API","data","Guides","linkedin"],"articleSection":["API","Data","Guides"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/","url":"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/","name":"Get LinkedIn Post History with the Lix \"Get Posts\" API\ufffc","isPartOf":{"@id":"https:\/\/lix-it.com\/blog\/#website"},"datePublished":"2025-02-21T10:02:29+00:00","dateModified":"2025-02-21T10:02:30+00:00","description":"Retrieve LinkedIn post history with the Lix Get Posts API. Analyze engagement trends, and automate content research at scale.","breadcrumb":{"@id":"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/lix-it.com\/blog\/get-linkedin-post-history-with-the-lix-get-posts-api%ef%bf%bc\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/lix-it.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Get LinkedIn Post History with the Lix &#8220;Get Posts&#8221; API\ufffc"}]},{"@type":"WebSite","@id":"https:\/\/lix-it.com\/blog\/#website","url":"https:\/\/lix-it.com\/blog\/","name":"Lix Blog","description":"","publisher":{"@id":"https:\/\/lix-it.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/lix-it.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/lix-it.com\/blog\/#organization","name":"Lix Blog","url":"https:\/\/lix-it.com\/blog\/","sameAs":[],"logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/lix-it.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/lix-it.com\/blog\/wp-content\/uploads\/2021\/01\/lix-blog-logo@10x-e1610038285991.png","contentUrl":"https:\/\/lix-it.com\/blog\/wp-content\/uploads\/2021\/01\/lix-blog-logo@10x-e1610038285991.png","width":152,"height":57,"caption":"Lix Blog"},"image":{"@id":"https:\/\/lix-it.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/lix-it.com\/blog\/#\/schema\/person\/b2375fe7dfcd61daff8c3d85ca3be832","name":"Alfie Lambert","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/lix-it.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/21af185f928f0ca2d54eb108980475e7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/21af185f928f0ca2d54eb108980475e7?s=96&d=mm&r=g","caption":"Alfie Lambert"},"description":"Alfie is one of Lix's co-founders and a former growth hacker in the world of data science. Follow him on Twitter (twitter.com\/AlfieLix) or connect on LinkedIn (linkedin.com\/in\/alfie-lambert).","sameAs":["https:\/\/www.linkedin.com\/in\/alfie-lambert\/","https:\/\/twitter.com\/AlfieLix"],"url":"https:\/\/lix-it.com\/blog\/author\/alfielix-it-com\/"}]}},"jetpack_featured_media_url":"https:\/\/lix-it.com\/blog\/wp-content\/uploads\/2025\/02\/Get-LinkedIn-Posts.png","_links":{"self":[{"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/posts\/1308"}],"collection":[{"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/comments?post=1308"}],"version-history":[{"count":3,"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/posts\/1308\/revisions"}],"predecessor-version":[{"id":1312,"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/posts\/1308\/revisions\/1312"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/media\/1311"}],"wp:attachment":[{"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/media?parent=1308"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/categories?post=1308"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/tags?post=1308"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}