{"id":1302,"date":"2025-02-14T15:59:59","date_gmt":"2025-02-14T15:59:59","guid":{"rendered":"https:\/\/lix-it.com\/blog\/?p=1302"},"modified":"2025-12-11T16:32:52","modified_gmt":"2025-12-11T16:32:52","slug":"reverse-email-lookup","status":"publish","type":"post","link":"https:\/\/lix-it.com\/blog\/reverse-email-lookup\/","title":{"rendered":"Reverse Email Lookup: Find LinkedIn Profiles Instantly with the Lix 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:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Looking for a way to find LinkedIn profiles using just an email address? The <strong>Lix Reverse Email Lookup API<\/strong> allows you to uncover <a href=\"http:\/\/www.linkedin.com\">LinkedIn<\/a> profile URLs and company information by inputting an email address, at scale. This powerful tool is perfect for <strong>sales prospecting, recruitment, and data enrichment<\/strong>, helping you streamline your workflow with <strong>verified LinkedIn data<\/strong>.<\/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 Reverse Email Lookup?<\/strong><\/h2>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Reverse email lookup is a method used to find social media profiles, personal details, or professional information linked to an email address. In the context of <strong>LinkedIn<\/strong>, this means retrieving a person\u2019s <strong>LinkedIn profile URL, their name, and associated company details<\/strong> based on their email.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>This is particularly useful for:<br>\ud83d\udd0d <strong>Sales &amp; Lead Generation<\/strong> \u2013 Enrich CRM records with LinkedIn profile URLs for more personalized outreach.<br>\ud83d\udcbc <strong>Recruitment &amp; Hiring<\/strong> \u2013 Identify and verify potential candidates quickly.<br>\ud83d\udcca <strong>Data Enrichment<\/strong> \u2013 Automate profile matching to maintain clean, complete datasets.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2><strong>How Does the Lix Reverse Email Lookup API Work?<\/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><a href=\"https:\/\/lix-it.com\/docs\/#email-from-linkedin-profile\">Lix API\u2019s &#8220;Lookup Person by Email&#8221; endpoint<\/a><\/strong> allows you to <strong>find a person\u2019s LinkedIn profile URL by simply inputting their email address<\/strong>. This search is asynchronous-enabled, meaning results can be processed efficiently at scale.<\/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.lookc.io\/v1\/search\/person\/by-email\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>Required Parameter<\/strong><\/h3>\n\n\n\n<ul><li><strong>email<\/strong> \u2013 The email address of the person you are searching for.<\/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.lookc.io\/v1\/search\/person\/by-email?email=example@email.com\"\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 with <strong>LinkedIn profile details, company information, and domain insights<\/strong>, like this:<\/p>\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>{\n  \"hits\": &#91;\n    {\n      \"name\": \"Alfie Lambert\",\n      \"liProfileUrl\": \"https:\/\/linkedin.com\/in\/alfie-lambert\",\n      \"salesNavUrl\": \"https:\/\/linkedin.com\/sales\/ACwAAAXQSFkBI1hIhlJLnr04EL-0FSqe1SIXTEM,NAME,undefined\"\n    }\n  ],\n  \"org\": {\n    \"name\": \"Lix\",\n    \"liProfileUrl\": \"https:\/\/linkedin.com\/company\/lix\",\n    \"salesNavUrl\": \"https:\/\/linkedin.com\/sales\/company\/1670390\"\n  },\n  \"domainInfo\": {\n    \"isFreeEmailDomain\": false\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<h3><strong>Breaking Down the API Response:<\/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>hits[]<\/strong>: This contains <strong>matched individuals<\/strong> based on the provided email address.<ul><li><strong>name<\/strong> \u2013 The person\u2019s full name.<\/li><li><strong>liProfileUrl<\/strong> \u2013 Their LinkedIn profile URL.<\/li><li><strong>salesNavUrl<\/strong> \u2013 Their LinkedIn Sales Navigator profile link (if available).<\/li><\/ul><\/li><li><strong>org<\/strong>: Information about the company associated with the email.<ul><li><strong>name<\/strong> \u2013 The company\u2019s name.<\/li><li><strong>liProfileUrl<\/strong> \u2013 The company\u2019s LinkedIn page.<\/li><li><strong>salesNavUrl<\/strong> \u2013 The company\u2019s Sales Navigator profile.<\/li><\/ul><\/li><li><strong>domainInfo<\/strong>: Indicates whether the email domain is a free provider (e.g., Gmail, Yahoo).<\/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 Reverse Email Lookup 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 businesses to <strong>automate the process of finding LinkedIn profiles<\/strong>, reducing time spent on research while ensuring accurate, up-to-date information.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>\ud83d\udd39 <strong>Instantly match emails to LinkedIn profiles<\/strong> \u2013 No need for time-consuming manual lookups.<br>\ud83d\udd39 <strong>Scale your prospecting and recruitment efforts<\/strong> \u2013 Retrieve thousands of profiles with automated API calls.<br>\ud83d\udd39 <strong>Enrich your CRM, ATS, or sales database<\/strong> \u2013 Keep your records updated with professional LinkedIn data.<br>\ud83d\udd39 <strong>Verify contacts before outreach<\/strong> \u2013 Ensure accuracy before reaching out to leads or candidates.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2><strong>Try It Yourself: Step-by-Step Guide<\/strong><\/h2>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Want to test the Reverse Email Lookup API right now? Here&#8217;s how to get started in under 5 minutes:<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>1. Create Your Free Account<\/strong><br><a href=\"https:\/\/lix-it.com\/register\">Register for a Lix account<\/a> \u2013 no credit card required.<\/p>\n\n\n\n<p><strong>2. Install the Lix Extension<\/strong><br>Download and install the Lix browser extension to verify your account.<\/p>\n\n\n\n<p><strong>3. Verify Your Account<\/strong><br>Complete the quick verification process through the extension.<\/p>\n\n\n\n<p><strong>4. Claim Your Free API Credits<\/strong><br>Once verified, claim your free API credits from your dashboard.<\/p>\n\n\n\n<p><strong>5. Run Your First Lookup<\/strong><br>Copy the Python script above, replace <code>YOUR_LIX_API_KEY_HERE<\/code> with your actual API key (found in your dashboard), and run your first reverse email lookup.<\/p>\n\n\n\n<p><strong>Need the full API documentation?<\/strong> Check out the <a href=\"https:\/\/lix-it.com\/docs\/#email-from-linkedin-profile\">complete Lix API docs<\/a> for more advanced use cases.<\/p>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\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 Reverse Email Lookup API helps you find LinkedIn profiles using just an email address. Perfect for sales prospecting, recruitment, and data enrichment, this API retrieves LinkedIn profile URLs and company details at scale\u2014saving time and ensuring accuracy.<\/p>\n","protected":false},"author":3,"featured_media":1305,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[99,90,38,93],"tags":[92,40,17,23],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.7.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Reverse Email Lookup: Find LinkedIn Profiles Instantly<\/title>\n<meta name=\"description\" content=\"Find LinkedIn profiles instantly with the Lix Reverse Email Lookup API. Convert email addresses into LinkedIn profile URLs.\" \/>\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\/reverse-email-lookup\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Reverse Email Lookup: Find LinkedIn Profiles Instantly\" \/>\n<meta property=\"og:description\" content=\"Find LinkedIn profiles instantly with the Lix Reverse Email Lookup API. Convert email addresses into LinkedIn profile URLs.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/lix-it.com\/blog\/reverse-email-lookup\/\" \/>\n<meta property=\"og:site_name\" content=\"Lix Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-02-14T15:59:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-11T16:32:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lix-it.com\/blog\/wp-content\/uploads\/2025\/02\/reverse-email-lookup.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\/reverse-email-lookup\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/lix-it.com\/blog\/reverse-email-lookup\/\"},\"author\":{\"name\":\"Alfie Lambert\",\"@id\":\"https:\/\/lix-it.com\/blog\/#\/schema\/person\/b2375fe7dfcd61daff8c3d85ca3be832\"},\"headline\":\"Reverse Email Lookup: Find LinkedIn Profiles Instantly with the Lix API\ufffc\",\"datePublished\":\"2025-02-14T15:59:59+00:00\",\"dateModified\":\"2025-12-11T16:32:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/lix-it.com\/blog\/reverse-email-lookup\/\"},\"wordCount\":524,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/lix-it.com\/blog\/#organization\"},\"keywords\":[\"API\",\"data\",\"Guides\",\"Sales\"],\"articleSection\":[\"API\",\"Competitive Intelligence\",\"Data\",\"Talent Intelligence\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/lix-it.com\/blog\/reverse-email-lookup\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/lix-it.com\/blog\/reverse-email-lookup\/\",\"url\":\"https:\/\/lix-it.com\/blog\/reverse-email-lookup\/\",\"name\":\"Reverse Email Lookup: Find LinkedIn Profiles Instantly\",\"isPartOf\":{\"@id\":\"https:\/\/lix-it.com\/blog\/#website\"},\"datePublished\":\"2025-02-14T15:59:59+00:00\",\"dateModified\":\"2025-12-11T16:32:52+00:00\",\"description\":\"Find LinkedIn profiles instantly with the Lix Reverse Email Lookup API. Convert email addresses into LinkedIn profile URLs.\",\"breadcrumb\":{\"@id\":\"https:\/\/lix-it.com\/blog\/reverse-email-lookup\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/lix-it.com\/blog\/reverse-email-lookup\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/lix-it.com\/blog\/reverse-email-lookup\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/lix-it.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Reverse Email Lookup: Find LinkedIn Profiles Instantly with the Lix 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":"Reverse Email Lookup: Find LinkedIn Profiles Instantly","description":"Find LinkedIn profiles instantly with the Lix Reverse Email Lookup API. Convert email addresses into LinkedIn profile URLs.","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\/reverse-email-lookup\/","og_locale":"en_GB","og_type":"article","og_title":"Reverse Email Lookup: Find LinkedIn Profiles Instantly","og_description":"Find LinkedIn profiles instantly with the Lix Reverse Email Lookup API. Convert email addresses into LinkedIn profile URLs.","og_url":"https:\/\/lix-it.com\/blog\/reverse-email-lookup\/","og_site_name":"Lix Blog","article_published_time":"2025-02-14T15:59:59+00:00","article_modified_time":"2025-12-11T16:32:52+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/lix-it.com\/blog\/wp-content\/uploads\/2025\/02\/reverse-email-lookup.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\/reverse-email-lookup\/#article","isPartOf":{"@id":"https:\/\/lix-it.com\/blog\/reverse-email-lookup\/"},"author":{"name":"Alfie Lambert","@id":"https:\/\/lix-it.com\/blog\/#\/schema\/person\/b2375fe7dfcd61daff8c3d85ca3be832"},"headline":"Reverse Email Lookup: Find LinkedIn Profiles Instantly with the Lix API\ufffc","datePublished":"2025-02-14T15:59:59+00:00","dateModified":"2025-12-11T16:32:52+00:00","mainEntityOfPage":{"@id":"https:\/\/lix-it.com\/blog\/reverse-email-lookup\/"},"wordCount":524,"commentCount":0,"publisher":{"@id":"https:\/\/lix-it.com\/blog\/#organization"},"keywords":["API","data","Guides","Sales"],"articleSection":["API","Competitive Intelligence","Data","Talent Intelligence"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/lix-it.com\/blog\/reverse-email-lookup\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/lix-it.com\/blog\/reverse-email-lookup\/","url":"https:\/\/lix-it.com\/blog\/reverse-email-lookup\/","name":"Reverse Email Lookup: Find LinkedIn Profiles Instantly","isPartOf":{"@id":"https:\/\/lix-it.com\/blog\/#website"},"datePublished":"2025-02-14T15:59:59+00:00","dateModified":"2025-12-11T16:32:52+00:00","description":"Find LinkedIn profiles instantly with the Lix Reverse Email Lookup API. Convert email addresses into LinkedIn profile URLs.","breadcrumb":{"@id":"https:\/\/lix-it.com\/blog\/reverse-email-lookup\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/lix-it.com\/blog\/reverse-email-lookup\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/lix-it.com\/blog\/reverse-email-lookup\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/lix-it.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Reverse Email Lookup: Find LinkedIn Profiles Instantly with the Lix 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\/reverse-email-lookup.png","_links":{"self":[{"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/posts\/1302"}],"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=1302"}],"version-history":[{"count":6,"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/posts\/1302\/revisions"}],"predecessor-version":[{"id":1348,"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/posts\/1302\/revisions\/1348"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/media\/1305"}],"wp:attachment":[{"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/media?parent=1302"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/categories?post=1302"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lix-it.com\/blog\/wp-json\/wp\/v2\/tags?post=1302"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}