{
  "id": "T20fuIbAutLoeQW9",
  "name": "Linkedin Profile Scraper",
  "tags": [],
  "nodes": [
    {
      "id": "989fe462-2136-41d0-aa6b-e8407c0cb63d",
      "name": "Sticky Note1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -528,
        0
      ],
      "parameters": {
        "width": 560,
        "height": 644,
        "content": "## **LinkedIn Profile Retrieval via TexAU**\n\nThis workflow automates the extraction of detailed LinkedIn profile information through the TexAU API. It is designed for lead enrichment, prospect research, hiring workflows, and any automation requiring structured profile data from LinkedIn.\n\n**How it Works**\n\n1. The workflow is triggered manually or through another workflow.\n2. A request is sent to TexAU\u2019s LinkedIn Profile Scraper task, providing the target LinkedIn profile URL or ID.\n3. TexAU starts a profile-scraping job in the background.\n4. The workflow waits briefly to allow processing time.\n5. A follow-up request retrieves the completed results from TexAU\u2019s results endpoint.\n6. The workflow outputs a structured JSON representation of the profile, typically including name, headline, role, location, experience, skills, and education.\n\n**Setup Steps**\n\n* Add your TexAU API key to the HTTP Request node.\n* Supply the LinkedIn profile URL dynamically or manually.\n* Adjust the wait time depending on TexAU\u2019s queue speed.\n* Connect your CRM, database, or AI logic to process the profile results.\n\n**Good to Know**\nData availability depends on what is publicly visible. Processing time varies based on TexAU queue load.\n"
      },
      "typeVersion": 1
    },
    {
      "id": "7f29a2b1-1de5-4892-a38b-b27fbdd57f41",
      "name": "When Executed by Another Workflow",
      "type": "n8n-nodes-base.executeWorkflowTrigger",
      "position": [
        96,
        272
      ],
      "parameters": {
        "workflowInputs": {
          "values": [
            {
              "name": "Linkedin_url"
            }
          ]
        }
      },
      "typeVersion": 1.1
    },
    {
      "id": "bc416f78-9dd7-4ec5-ab6a-755043bc00ae",
      "name": "Get Results",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        544,
        272
      ],
      "parameters": {
        "url": "=https://api.texau.com/api/v1/public/executions/{{ $json.data.id }}",
        "options": {},
        "sendHeaders": true,
        "headerParameters": {
          "parameters": [
            {
              "name": "accept",
              "value": "application/json"
            },
            {
              "name": "X-TexAu-Context",
              "value": "={\"orgUserId\":\"682d0f7b9b7201d753c4d2e0\",\"workspaceId\":\"682d0f7b9b7201d753c4d2e5\"}"
            },
            {
              "name": "Authorization",
              "value": "=<redacted-credential>"
            }
          ]
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "e2e48e2b-31c9-4e8b-9826-70c50f309356",
      "name": "Wait",
      "type": "n8n-nodes-base.wait",
      "position": [
        768,
        272
      ],
      "parameters": {
        "amount": 60
      },
      "typeVersion": 1.1
    },
    {
      "id": "56240d78-1b01-4d8c-a11f-f5d1a3c15d5a",
      "name": "LinkedIn_Profile_Scrape",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        320,
        272
      ],
      "parameters": {
        "url": "=https://api.texau.com/api/v1/public/run",
        "method": "POST",
        "options": {},
        "jsonBody": "={\n  \"name\": \"LinkedIn Profile Scraper\",\n  \"description\": \"LinkedIn Profile\",\n  \"automationId\": \"63f48ee97022e05c116fc798\",\n  \"connectedAccountId\": \"682e40549b7201d753f2cb82\",\n  \"timezone\": \"America/Los_Angeles\",\n  \"inputs\": {\n    \"liProfileUrl\": \"{{ $json.Linkedin_url }}\"\n  }\n} ",
        "sendBody": true,
        "sendHeaders": true,
        "specifyBody": "json",
        "headerParameters": {
          "parameters": [
            {
              "name": "accept",
              "value": "application/json"
            },
            {
              "name": "X-TexAu-Context",
              "value": "={\"orgUserId\":\"682d0f7b9b7201d753c4d2e0\",\"workspaceId\":\"682d0f7b9b7201d753c4d2e5\"}"
            },
            {
              "name": "Authorization",
              "value": "=<redacted-credential>"
            }
          ]
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "c8b8c9d5-294b-4b34-8bc3-3ecf15d56a93",
      "name": "Get_Results",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        992,
        272
      ],
      "parameters": {
        "url": "=https://api.texau.com/api/v1/public/results/{{ $json.data.id }}",
        "options": {},
        "sendHeaders": true,
        "headerParameters": {
          "parameters": [
            {
              "name": "accept",
              "value": "application/json"
            },
            {
              "name": "X-TexAu-Context",
              "value": "={\"orgUserId\":\"682d0f7b9b7201d753c4d2e0\",\"workspaceId\":\"682d0f7b9b7201d753c4d2e5\"}"
            },
            {
              "name": "Authorization",
              "value": "=<redacted-credential>"
            }
          ]
        }
      },
      "typeVersion": 4.2
    }
  ],
  "active": false,
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "d4ef32d1-a445-4b68-ac90-8d12bdd4a9be",
  "connections": {
    "Wait": {
      "main": [
        [
          {
            "node": "Get_Results",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Get Results": {
      "main": [
        [
          {
            "node": "Wait",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "LinkedIn_Profile_Scrape": {
      "main": [
        [
          {
            "node": "Get Results",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "When Executed by Another Workflow": {
      "main": [
        [
          {
            "node": "LinkedIn_Profile_Scrape",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}