npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ujeebu-org/n8n-nodes-ujeebu

v0.1.0

Published

n8n community nodes for Ujeebu API - Web scraping, article extraction, and SERP API

Readme

n8n-nodes-ujeebu

This is an n8n community node package that provides integration with Ujeebu API for web scraping, article extraction, and Google SERP (Search Engine Results Page) retrieval.

n8n is a fair-code licensed workflow automation platform.

Ujeebu provides powerful APIs for web scraping, content extraction, and search engine results.

Table of Contents

Installation

Follow the installation guide in the n8n community nodes documentation.

npm

npm install n8n-nodes-ujeebu

Manual Installation

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter n8n-nodes-ujeebu in the npm package name field
  4. Agree to the risks of using community nodes
  5. Select Install

Operations

Extract API

The Extract API converts news or blog articles into structured JSON data.

| Operation | Description | |-----------|-------------| | Article | Extract article content (title, text, author, publish date, images, media) |

Key Features:

  • Automatic article detection
  • Author and publish date extraction
  • Image and media extraction
  • RSS feed discovery
  • JavaScript rendering support
  • Quick mode for faster processing

Scrape API

The Scrape API provides powerful web scraping capabilities with a headless Chrome browser.

| Operation | Description | |-----------|-------------| | Get HTML | Retrieve rendered HTML of a web page | | Screenshot | Capture screenshots (full page, viewport, or element) | | PDF | Convert web pages to PDF documents | | Extract with Rules | Extract structured data using CSS selectors |

Key Features:

  • JavaScript rendering
  • Custom user agents and cookies
  • Proxy support (rotating, premium, residential, mobile)
  • Wait for selectors or timeouts
  • Scroll automation
  • Ad blocking
  • Mobile/desktop device emulation

SERP API

The SERP API retrieves Google search results programmatically.

| Operation | Description | |-----------|-------------| | Web Search | Standard Google web search | | News Search | Google News articles | | Image Search | Google Images results | | Video Search | Google Videos results | | Maps Search | Google Maps / local business results |

Key Features:

  • Multiple search types
  • Location and language customization
  • Device emulation (desktop, mobile, tablet)
  • Pagination support
  • Knowledge graph data

Credentials

To use this node, you need to configure Ujeebu API credentials:

  1. Sign up for a free account at ujeebu.com/signup
  2. Get your API key from the dashboard
  3. In n8n, create new credentials of type Ujeebu API
  4. Enter your API key

Usage Examples

Example 1: Extract Article Content

Extract structured content from a news article:

  1. Add the Ujeebu node
  2. Select Extract resource
  3. Select Article operation
  4. Enter the article URL
  5. Configure options (JavaScript, images, etc.)

Output:

{
  "article": {
    "title": "Article Title",
    "text": "Article content...",
    "author": "John Doe",
    "pub_date": "2025-01-01",
    "images": ["https://example.com/image.jpg"]
  }
}

Example 2: Take Website Screenshot

Capture a full-page screenshot:

  1. Add the Ujeebu node
  2. Select Scrape resource
  3. Select Screenshot operation
  4. Enter the URL
  5. Enable Full Page option
  6. The screenshot is output as binary data

Example 3: Scrape Product Data

Extract product information from an e-commerce page:

  1. Add the Ujeebu node
  2. Select Scrape resource
  3. Select Extract with Rules operation
  4. Enter the product page URL
  5. Define extraction rules:
{
  "title": { "selector": "h1.product-title", "type": "text" },
  "price": { "selector": ".price", "type": "text" },
  "image": { "selector": "img.product-image", "type": "image" },
  "description": { "selector": ".description", "type": "text" }
}

Example 4: Monitor Google Search Rankings

Track search rankings for keywords:

  1. Add the Ujeebu node
  2. Select SERP resource
  3. Select Web Search operation
  4. Enter your search query
  5. Configure location and language
  6. Process organic_results to find your domain's position

Example 5: News Monitoring Workflow

Monitor news for specific topics:

  1. Schedule Trigger - Run every hour
  2. Ujeebu node - SERP > News Search
  3. Filter node - Filter by relevance
  4. Ujeebu node - Extract > Article (for each news URL)
  5. Send Email - Alert for important news

API Credits

Each API operation consumes credits. Refer to Ujeebu pricing for details.

| API | Credits per Request | |-----|---------------------| | Extract | 5-50 (varies by options) | | Scrape | 5-100 (varies by proxy/features) | | SERP | 25 |

Resources

Development

Prerequisites

  • Node.js >= 18.10
  • npm

Setup

# Clone the repository
git clone https://github.com/ujeebu/n8n-nodes-ujeebu.git
cd n8n-nodes-ujeebu

# Install dependencies
npm install

# Build
npm run build

# Run tests
npm test

# Run tests with coverage
npm run test:coverage

Project Structure

├── credentials/
│   └── UjeebuApi.credentials.ts    # API credentials
├── nodes/
│   └── Ujeebu/
│       ├── Ujeebu.node.ts          # Main node definition
│       ├── types.ts                 # TypeScript interfaces
│       ├── transport/
│       │   └── index.ts            # API transport layer
│       └── actions/
│           ├── extract/            # Extract API operations
│           ├── scrape/             # Scrape API operations
│           └── serp/               # SERP API operations
├── __tests__/                      # Unit tests
├── package.json
└── README.md

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

MIT

Support