Documentation Index
Fetch the complete documentation index at: https://docs.linkup.so/llms.txt
Use this file to discover all available pages before exploring further.
Overview
We are actively working on creating a Linkup node for n8n.
In the meantime, follow this tutorial to get contextual information from the internet.
Configuration Steps
Open your n8n account and create a workflow
Go to Workflows > Create Workflows
Add a trigger
Click on the + button to add a trigger
Select your trigger
Choose your trigger (Trigger Manually is selected in this example)
Add HTTP Request node
Click on the + button > Core > HTTP Request

Configure HTTP method
Select POST as Method
Enter API endpoint
Enter https://api.linkup.so/v1/search in URL
Set up authentication
In Authentication, select “Predifined Credential Type”
Credential Type
In Credential Type, select “Bearer Auth”
Create new credential
In Bearer Auth, click on ”+ Create new credential”
Add Bearer Token
Copy your Linkup API key in the Bearer Token field, click save and close the windowGet your API key
Create a Linkup account for free to get your API key.

Enable request body
Toggle on “Send Body”
Body Content Type
Select “JSON” as the Content Type
Specify Body
Select “Using JSON” as the Specify Body option
JSON Body
Use JSON to specify your search parameters{
"q": "How's the weather in Paris today?",
"depth": "standard",
"outputType": "sourcedAnswer"
}
Save and run your workflow.
You are all set to use Linkup in your n8n workflow! Visit the Concepts page to learn more about the different Linkup parameters.