{"id":1286,"date":"2025-02-01T13:58:33","date_gmt":"2025-02-01T13:58:33","guid":{"rendered":"https:\/\/lix-it.com\/blog\/?p=1286"},"modified":"2025-02-01T13:58:34","modified_gmt":"2025-02-01T13:58:34","slug":"linkedin-company-data-api","status":"publish","type":"post","link":"https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/","title":{"rendered":"Extract LinkedIn Company Data via API: Lix Org Enrichment"},"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:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Looking to enrich your internal tools, CRM or customer applications with LinkedIn Company Data via API? The <strong><a href=\"https:\/\/lix-it.com\/docs\/#organisation\">Lix Organisation Enrichment<\/a> <\/strong>endpoint makes it easy to retrieve rich, structured company information at scale &#8211; just by supplying a LinkedIn company URL. Whether you\u2019re building a sales intelligence platform, tracking competitor insights, or automating research, this API delivers precise data at scale.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2>What is the Organisation Enrichment Endpoint?<\/h2>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>The <strong>Organisation Enrichment<\/strong> endpoint allows you to retrieve detailed company data from LinkedIn, including:<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>\u2705 <strong>Company name, industry, and description<\/strong><br>\u2705 <strong>Website, headquarters location, and company type<\/strong><br>\u2705 <strong>Employee count and company size<\/strong><br>\u2705 <strong>Specialties and areas of expertise<\/strong><br>\u2705 <strong>Number of investment rounds and Crunchbase ID<\/strong><br>\u2705 <strong>Follower count and Sales Navigator link<\/strong><\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>This endpoint provides all the key data points needed for prospecting, market analysis, and research\u2014without the hassle of manually gathering the information.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2>How to Use the Lix Organisation Enrichment API<\/h2>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>To start using this endpoint, you\u2019ll need a <strong><a href=\"https:\/\/lix-it.com\/\">Lix<\/a> account<\/strong> and an API key. <a href=\"https:\/\/lix-it.com\/register\">Signing up is free<\/a>, and you\u2019ll receive <strong>10 free credits<\/strong> to test the API before committing. You can follow along below, or use the Lix LinkedIn <a href=\"https:\/\/lix-it.com\/docs\/#organisation\">API documentation<\/a> (find our other powerful endpoints there, too!).<\/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-preformatted\">bashCopyEdit<code>GET https:\/\/api.lix-it.com\/v1\/organisations\/by-linkedin\n<\/code><\/pre>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3><strong>Required Parameter<\/strong><\/h3>\n\n\n\n<ul><li><strong>linkedin_url<\/strong> \u2013 The full <a href=\"http:\/\/www.linkedin.com\">LinkedIn<\/a> URL of the company you want to retrieve data for.<\/li><\/ul>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3><strong>Example API Request (Python)<\/strong><\/h3>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>pythonCopyEdit<code>import requests\n\nurl = \"https:\/\/api.lix-it.com\/v1\/organisations\/by-linkedin?linkedin_url=https:\/\/linkedin.com\/company\/linkedin\"\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:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3><strong>Example Response<\/strong><\/h3>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>jsonCopyEdit<code>{\n    \"liOrganisation\": {\n        \"name\": \"LinkedIn\",\n        \"link\": \"https:\/\/www.linkedin.com\/company\/linkedin\",\n        \"industry\": \"Computer Software\",\n        \"website\": \"https:\/\/careers.linkedin.com\",\n        \"description\": \"Founded in 2003, LinkedIn connects the world's professionals...\",\n        \"headquarters\": \"Sunnyvale, US\",\n        \"companyType\": \"Public Company\",\n        \"liEmployeeCount\": \"26383\",\n        \"size\": \"10001+\",\n        \"specialities\": \"Online Professional Network, Jobs, People Search...\",\n        \"numberOfInvestmentRounds\": \"7\",\n        \"followers\": \"25072627\",\n        \"crunchbaseId\": \"linkedin\",\n        \"salesNavLink\": \"https:\/\/www.linkedin.com\/sales\/accounts\/insights?companyId=1337\",\n        \"logoUrl\": \"https:\/\/media.licdn.com\/dms\/image\/C560BAQHaVYd13rRz3A\/company-logo_\"\n    }\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<h2>Why Use the Lix Organisation Enrichment API for LinkedIn Company Data?<\/h2>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>This endpoint is perfect for a range of business use cases:<\/p>\n\n\n\n<p><br>\ud83d\ude80 <strong>Sales &amp; Lead Generation<\/strong> \u2013 Instantly retrieve company data to enhance prospect lists and personalise outreach.<br>\ud83d\udcca <strong>Market Research &amp; Competitive Intelligence<\/strong> \u2013 Track company growth, hiring trends, and industry shifts.<br>\ud83d\udd17 <strong>Data Enrichment for CRMs &amp; SaaS Platforms<\/strong> \u2013 Automatically populate missing company details in your database.<\/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 company lookups efficiently, ensuring your workflows remain smooth and automated.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2>Get Started Today<\/h2>\n\n\n\n<div style=\"height:30px\" 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 enriching company data with a simple API call. The <strong>Organisation Enrichment<\/strong> endpoint is the fastest way to unlock LinkedIn company insights at scale\u2014powering your sales, research, and intelligence efforts with fresh, structured data.<\/p>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\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> Discover how the Lix Organisation Enrichment API enables seamless retrieval of detailed LinkedIn company profiles. By simply providing a LinkedIn company URL, access comprehensive data including industry, size, and specialties, enhancing your application&#8217;s capabilities with rich company insights.<\/p>\n","protected":false},"author":3,"featured_media":1294,"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>Extract LinkedIn Company Data via API: Lix Org Enrichment - Lix Blog<\/title>\n<meta name=\"description\" content=\"Enhance your tools with LinkedIn company data using the Lix Org Enrichment API. Retrieve detailed company profiles effortlessly and 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\/linkedin-company-data-api\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Extract LinkedIn Company Data via API: Lix Org Enrichment - Lix Blog\" \/>\n<meta property=\"og:description\" content=\"Enhance your tools with LinkedIn company data using the Lix Org Enrichment API. Retrieve detailed company profiles effortlessly and at scale.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/\" \/>\n<meta property=\"og:site_name\" content=\"Lix Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-02-01T13:58:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-01T13:58:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lix-it.com\/blog\/wp-content\/uploads\/2025\/02\/LinkedIn-Company-Data.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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/\"},\"author\":{\"name\":\"Alfie Lambert\",\"@id\":\"https:\/\/lix-it.com\/blog\/#\/schema\/person\/b2375fe7dfcd61daff8c3d85ca3be832\"},\"headline\":\"Extract LinkedIn Company Data via API: Lix Org Enrichment\",\"datePublished\":\"2025-02-01T13:58:33+00:00\",\"dateModified\":\"2025-02-01T13:58:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/\"},\"wordCount\":365,\"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\/linkedin-company-data-api\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/\",\"url\":\"https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/\",\"name\":\"Extract LinkedIn Company Data via API: Lix Org Enrichment - Lix Blog\",\"isPartOf\":{\"@id\":\"https:\/\/lix-it.com\/blog\/#website\"},\"datePublished\":\"2025-02-01T13:58:33+00:00\",\"dateModified\":\"2025-02-01T13:58:34+00:00\",\"description\":\"Enhance your tools with LinkedIn company data using the Lix Org Enrichment API. Retrieve detailed company profiles effortlessly and at scale.\",\"breadcrumb\":{\"@id\":\"https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/lix-it.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Extract LinkedIn Company Data via API: Lix Org Enrichment\"}]},{\"@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":"Extract LinkedIn Company Data via API: Lix Org Enrichment - Lix Blog","description":"Enhance your tools with LinkedIn company data using the Lix Org Enrichment API. Retrieve detailed company profiles effortlessly and 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\/linkedin-company-data-api\/","og_locale":"en_GB","og_type":"article","og_title":"Extract LinkedIn Company Data via API: Lix Org Enrichment - Lix Blog","og_description":"Enhance your tools with LinkedIn company data using the Lix Org Enrichment API. Retrieve detailed company profiles effortlessly and at scale.","og_url":"https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/","og_site_name":"Lix Blog","article_published_time":"2025-02-01T13:58:33+00:00","article_modified_time":"2025-02-01T13:58:34+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/lix-it.com\/blog\/wp-content\/uploads\/2025\/02\/LinkedIn-Company-Data.png","type":"image\/png"}],"author":"Alfie Lambert","twitter_card":"summary_large_image","twitter_creator":"@AlfieLix","twitter_misc":{"Written by":"Alfie Lambert","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/#article","isPartOf":{"@id":"https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/"},"author":{"name":"Alfie Lambert","@id":"https:\/\/lix-it.com\/blog\/#\/schema\/person\/b2375fe7dfcd61daff8c3d85ca3be832"},"headline":"Extract LinkedIn Company Data via API: Lix Org Enrichment","datePublished":"2025-02-01T13:58:33+00:00","dateModified":"2025-02-01T13:58:34+00:00","mainEntityOfPage":{"@id":"https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/"},"wordCount":365,"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\/linkedin-company-data-api\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/","url":"https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/","name":"Extract LinkedIn Company Data via API: Lix Org Enrichment - Lix Blog","isPartOf":{"@id":"https:\/\/lix-it.com\/blog\/#website"},"datePublished":"2025-02-01T13:58:33+00:00","dateModified":"2025-02-01T13:58:34+00:00","description":"Enhance your tools with LinkedIn company data using the Lix Org Enrichment API. Retrieve detailed company profiles effortlessly and at scale.","breadcrumb":{"@id":"https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/lix-it.com\/blog\/linkedin-company-data-api\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/lix-it.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Extract LinkedIn Company Data via API: Lix Org Enrichment"}]},{"@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\/LinkedIn-Company-Data.png","_links":{"self":[{"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/posts\/1286"}],"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=1286"}],"version-history":[{"count":8,"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/posts\/1286\/revisions"}],"predecessor-version":[{"id":1295,"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/posts\/1286\/revisions\/1295"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/media\/1294"}],"wp:attachment":[{"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/media?parent=1286"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/categories?post=1286"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/tags?post=1286"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}