# Smart Website Traffic (`xaikyo/smart-website-traffic`) Actor

Deliver targeted traffic to your website, deep crawl all internal links and pages, google analytics integration and stress test. Fast, parallel processing and the option to block ads, images or even certain domains!

- **URL**: https://apify.com/xaikyo/smart-website-traffic.md
- **Developed by:** [Xaikyo Industries](https://apify.com/xaikyo) (community)
- **Categories:** Automation, E-commerce, SEO tools
- **Stats:** 321 total users, 8 monthly users, 67.2% runs succeeded, 7 bookmarks
- **User rating**: No ratings yet

## Pricing

$5.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

## 🚀 **Smart Website Traffic - Power Up Your Web Automation!** 🚀

Welcome to **Smart Website Traffic**, your ultimate solution for powerful, fast traffic generation using the Apify platform! 🎉

This actor handles complex web crawling tasks efficiently. Whether you're boosting site rankings, crawling deep into websites, or stress testing before a release, this Actor is designed to get the job done! 💪

***

### 🌟 **Why Choose Our Software?** 🌟

- **🔍 Versatile Web Scraping:** Handle dynamic websites, AJAX-loaded pages, and JavaScript-heavy content effortlessly.
- **🌐 Deep Crawling Capabilities:** Navigate across multiple pages with custom depth control for a comprehensive data collection.
- **⚡ Parallelized Crawling:** Maximize efficiency by running simultaneous crawls across different URLs.
- **🛡️ Ad & Image Blocking:** Speed up crawling by blocking ads and images for faster load times.
- **📊 Detailed Crawl Reporting:** Get insights into visited URLs, crawl duration, errors encountered, and more.
- **🔗 Dynamic Link Enqueueing:** Automatically add links from the current page to the crawling queue for continuous exploration.

***

### 🚀 **Input** 🚀

- **🔗 Start URLs:** Define the initial list of URLs to kickstart your scraping journey.
- **📏 Max Depth:** Control how deep the scraper crawls within a website's structure.
- **💥 Multiply Visits:** Repeat visits for more thorough data collection.
- **🕵️ Number of Visitors:** Specify how many pages to simulate being visited.
- **⏳ Wait Times:** Customize minimum and maximum wait durations between page interactions.
- **🖥️ Ad & Image Blocking:** Choose whether to block ads or images to optimize scraping speed.
- **🤖 Crawl Mode:** Enable automatic link crawling for a comprehensive scrape of the entire site.
- **📜 Pattern Blocking:** Block specific URL patterns to avoid unnecessary pages.

***

### 🌟 **Output** 🌟

The **Smart Website Traffic** provides detailed output on each page visited, including:

- 🌐 **URL Visited**
- ⏳ **Duration of Stay**
- 🕒 **Start & End Time**
- ✅ **Crawl Success Status**
- ❌ **Skipped & Error Pages**
- 📊 **Average Load Time**
- 📑 **Total Pages Crawled**
- 🔗 **Blocked Patterns**

***

### 🎯 **Get Started Today!** 🎯

Unleash the power of website traffic with **Smart Website Traffic**. Optimize your scraping workflow and achieve seamless data collection!

# Actor input Schema

## `start_urls` (type: `array`):

URLs to start with

## `max_depth` (type: `integer`):

Depth to which to scrape to

## `depth` (type: `integer`):

The current depth of the scrape

## `multiply` (type: `integer`):

How many times to visit each URL

## `parallelize` (type: `boolean`):

Whether to parallelize crawling of links

## `num_visitors` (type: `integer`):

Number of virtual visitors to simulate

## `block_ads` (type: `boolean`):

Whether to block ads while scraping

## `block_img` (type: `boolean`):

Whether to block images to speed up crawling

## `block_patterns` (type: `array`):

List of URL patterns to block

## `crawl` (type: `boolean`):

Whether to enqueue and crawl links found on pages

## `max_page_wait_seconds` (type: `integer`):

Maximum amount of time to wait for a page to load

## `min_page_wait_seconds` (type: `integer`):

Minimum amount of time to wait for a page to load

## Actor input object example

```json
{
  "start_urls": [
    {
      "url": "https://apify.com"
    }
  ],
  "max_depth": 3,
  "depth": 0,
  "multiply": 1,
  "parallelize": true,
  "num_visitors": 10,
  "block_ads": true,
  "block_img": true,
  "block_patterns": [],
  "crawl": true,
  "max_page_wait_seconds": 4,
  "min_page_wait_seconds": 2
}
```

# 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 = {
    "start_urls": [
        {
            "url": "https://apify.com"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("xaikyo/smart-website-traffic").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 = { "start_urls": [{ "url": "https://apify.com" }] }

# Run the Actor and wait for it to finish
run = client.actor("xaikyo/smart-website-traffic").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 '{
  "start_urls": [
    {
      "url": "https://apify.com"
    }
  ]
}' |
apify call xaikyo/smart-website-traffic --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=xaikyo/smart-website-traffic",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/kG9Ju3oJq1tSUhEvW/builds/ElnciLclgwaW0nRKh/openapi.json
