n8n Nodes Installation

Install and configure Anysite nodes for n8n

Overview

The Anysite n8n nodes package provides powerful social media data extraction capabilities directly within your n8n workflows. Extract data from LinkedIn, Twitter, Reddit, Instagram, and websites with ease.

Prerequisites

Installation Methods

Method 1: Community Nodes (Recommended)

Access n8n Settings

In your n8n instance, go to **Settings** → **Community Nodes**

Install Package

Enter the package name: `n8n-nodes-anysite`

Click **Install** and wait for the installation to complete

Restart n8n

Restart your n8n instance to load the new nodes

Method 2: Manual Installation

Install via npm

```bash
npm install n8n-nodes-anysite
```

Configure n8n

Add the package to your n8n configuration:
```bash
export N8N_CUSTOM_EXTENSIONS=n8n-nodes-anysite
```

Restart n8n

```bash
n8n start
```

API Credentials Setup

Get Your API Key

1. Visit [anysite.io](https://app.anysite.io/register)
2. Create your account and log in
3. Navigate to **Account Settings** → **API Keys**
4. Generate a new API key

Create Credentials in n8n

1. In n8n, go to **Credentials**
2. Click **Create New**
3. Search for "Anysite API"
4. Enter your API key
5. Test the connection
6. Save the credentials

Available Nodes

After installation, you'll have access to these nodes:

Anysite LinkedIn

User search, profile retrieval, post analysis, company data

Anysite Twitter

User profiles, tweet search, timeline data

Anysite Reddit

Post search, comment extraction, subreddit data

Anysite Instagram

User profiles, posts, stories, comments

Anysite Web Parser

Website scraping, content extraction, screenshots

First Workflow

Let's create a simple workflow to test your installation:

Create New Workflow

1. In n8n, click **Create Workflow**
2. Add a **Schedule Trigger** node

Add Anysite LinkedIn Node

1. Click the **+** button after the trigger
2. Search for "Anysite LinkedIn"
3. Select the node and configure it:
   - **Operation**: Search Users
   - **Credentials**: Select your Anysite credentials
   - **Search Query**: "marketing manager"
   - **Limit**: 5

Test the Workflow

1. Click **Test Workflow**
2. You should see LinkedIn user data in the output

Verification

To verify your installation is working correctly:

  1. Check Node Availability: All Anysite nodes should appear in the nodes panel
  2. Test Credentials: Use any Anysite node with your credentials
  3. Run Sample Workflow: Execute a simple data extraction workflow

Troubleshooting

Nodes not appearing after installation

- Ensure n8n has been fully restarted after installation
- Check that Node.js version is 18.10 or higher
- Verify the package was installed correctly: `npm list n8n-nodes-anysite`

Credential authentication errors

- Verify your API key is correct and active
- Check that your Anysite account has API access
- Ensure there are no extra spaces in the API key
- Test the API key directly with curl or Postman

Package installation fails

- Check Node.js version compatibility
- Clear npm cache: `npm cache clean --force`
- Try manual installation method
- Check n8n logs for detailed error messages

Rate limit or quota errors

- Check your API usage limits in the Anysite dashboard
- Implement delays between requests in your workflows
- Consider upgrading your subscription plan if needed

Next Steps

The Anysite Web Parser node is currently in beta. Some features may be limited or subject to change.