Package Information
Available Nodes
Documentation
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
- Go to Settings > Community Nodes
- Select Install
- Enter
n8n-nodes-ujeebuin the npm package name field - Agree to the risks of using community nodes
- 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) |
| 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:
- Sign up for a free account at ujeebu.com/signup
- Get your API key from the dashboard
- In n8n, create new credentials of type Ujeebu API
- Enter your API key
Usage Examples
Example 1: Extract Article Content
Extract structured content from a news article:
- Add the Ujeebu node
- Select Extract resource
- Select Article operation
- Enter the article URL
- 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:
- Add the Ujeebu node
- Select Scrape resource
- Select Screenshot operation
- Enter the URL
- Enable Full Page option
- The screenshot is output as binary data
Example 3: Scrape Product Data
Extract product information from an e-commerce page:
- Add the Ujeebu node
- Select Scrape resource
- Select Extract with Rules operation
- Enter the product page URL
- 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:
- Add the Ujeebu node
- Select SERP resource
- Select Web Search operation
- Enter your search query
- Configure location and language
- Process organic_results to find your domain's position
Example 5: News Monitoring Workflow
Monitor news for specific topics:
- Schedule Trigger - Run every hour
- Ujeebu node - SERP > News Search
- Filter node - Filter by relevance
- Ujeebu node - Extract > Article (for each news URL)
- 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
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
License
Support
- Documentation: ujeebu.com/docs
- Issues: GitHub Issues
- Email: support@ujeebu.com