# Nifty Blogs Spider (`getdataforme/nifty-blogs-spider`) Actor

Nifty Blogs Spider is a web scraping tool for extracting blog posts from specified URLs. It captures titles, descriptions, images, and more in structured JSON format....

- **URL**: https://apify.com/getdataforme/nifty-blogs-spider.md
- **Developed by:** [GetDataForMe](https://apify.com/getdataforme) (community)
- **Categories:** AI, Automation, E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $9.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

***

## Nifty Blogs Spider

### Introduction

Nifty Blogs Spider is a powerful web scraping tool designed to extract blog posts from specified URLs. It efficiently gathers data such as titles, descriptions, and images, making it ideal for content aggregation and analysis.

### Features

- **Comprehensive Data Extraction**: Captures essential details like titles, URLs, descriptions, and images.
- **Flexible Configuration**: Allows customization of input parameters to suit specific needs.
- **Scalable Performance**: Supports unlimited item scraping with adjustable limits.
- **Reliable Output**: Provides structured JSON output for easy integration.
- **User-Friendly Setup**: Simple configuration through the Apify Store interface.

### Input Parameters

| Parameter   | Type    | Required | Description                                                                 | Example                      |
|-------------|---------|----------|-----------------------------------------------------------------------------|------------------------------|
| Urls        | array   | Yes      | The URLs for the spider to scrape. Must be valid HTTP/HTTPS links.          | `["https://nifty.ai/blog"]`  |
| item\_limit  | integer | No       | Maximum items to scrape per actor run. Set to 0 for no limit.               | `10`                         |

### Example Usage

#### Input JSON

```json
{
  "Urls": ["https://nifty.ai/blog"],
  "item_limit": 10
}
```

#### Output JSON

```json
[
  {
    "title": "OneShop pricing: Is the tool worth it in 2026?",
    "url": "https://nifty.ai/post/oneshop-pricing",
    "description": "OneShop pricing is $45/month, but it also includes a 13% + 3.3% + $0.50 fee, and it only has one plan. Learn about its 4 marketplace integrations and user reviews.",
    "image_url": "https://cdn.prod.website-files.com/6836e5e18d99fe9a3892700f/6a328a42ca553d01ad962aa7_Nifty_Thumbnail%20(1).png",
    "relative_path": "/post/oneshop-pricing",
    "actor_id": "Q6LjZrQGhEgPc3Vg5",
    "run_id": "jExIwEJPVomjdQpOd"
  },
  {
    "title": "Is reselling profitable? 2026 beginner’s guide",
    "url": "https://nifty.ai/post/is-reselling-profitable",
    "description": "Yes, reselling is profitable if you offer in-demand items like streetwear and electronics. Learn business models, seller types, and the best items for resale.",
    "image_url": "https://cdn.prod.website-files.com/6836e5e18d99fe9a3892700f/6a311ea585d7f5520d93f3ce_Nifty_Thumbnail2%20(1).png",
    "relative_path": "/post/is-reselling-profitable",
    "actor_id": "Q6LjZrQGhEgPc3Vg5",
    "run_id": "jExIwEJPVomjdQpOd"
  },
  {
    "title": "How to get paid on Poshmark: 2026 seller’s guide",
    "url": "https://nifty.ai/post/how-to-get-paid-on-poshmark",
    "description": "Get paid on Poshmark as early as after a buyer accepts the order or 3 days after arrival. Compare Venmo, direct deposit, and Instant Transfer for speed and convenience.",
    "image_url": "https://cdn.prod.website-files.com/6836e5e18d99fe9a3892700f/6a311d49dc86ce57f673f744_Nifty_Thumbnail%20(1).png",
    "relative_path": "/post/how-to-get-paid-on-poshmark",
    "actor_id": "Q6LjZrQGhEgPc3Vg5",
    "run_id": "jExIwEJPVomjdQpOd"
  }
]
```

### Use Cases

- **Market Research and Analysis**: Extract blog data for competitive insights.
- **Competitive Intelligence**: Monitor competitor content strategies.
- **Price Monitoring**: Track pricing trends in industry blogs.
- **Content Aggregation**: Compile blog posts for newsletters or reports.
- **Academic Research**: Gather data for studies on digital marketing trends.
- **Business Automation**: Automate data collection for business intelligence.

### Installation and Usage

1. Search for "Nifty Blogs Spider" in the Apify Store.
2. Click "Try for free" or "Run".
3. Configure input parameters (e.g., URLs, item limit).
4. Click "Start" to begin extraction.
5. Monitor progress in the log.
6. Export results in your preferred format (JSON, CSV, Excel).

### Output Format

The output is a JSON array containing objects with the following fields:

- `title`: The title of the blog post.
- `url`: The URL of the blog post.
- `description`: A brief description of the content.
- `image_url`: URL of an associated image.
- `relative_path`: The path relative to the base URL.
- `actor_id`: Unique identifier for the actor run.
- `run_id`: Unique identifier for the specific run.

### Support

For custom/simplified outputs or bug reports, please contact:

- Email: support@getdataforme.com
- Subject line: "custom support"
- Contact form: [Contact Us](https://getdataforme.com/contact/)

We're here to help you get the most out of this Actor!

# Actor input Schema

## `Urls` (type: `array`):

The urls for the spider.

## `item_limit` (type: `integer`):

Maximum items to scrape per actor run. Set to 0 for no limit.

## Actor input object example

```json
{
  "Urls": [
    "https://nifty.ai/blog"
  ],
  "item_limit": 10
}
```

# Actor output Schema

## `results` (type: `string`):

Scraped data items from dataset

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("getdataforme/nifty-blogs-spider").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("getdataforme/nifty-blogs-spider").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call getdataforme/nifty-blogs-spider --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=getdataforme/nifty-blogs-spider",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/Q6LjZrQGhEgPc3Vg5/builds/oteX3Lb3lHuVFI8O6/openapi.json
