# s44234214 (`the_eldric-arbon/s44234214`) Actor

- **URL**: https://apify.com/the\_eldric-arbon/s44234214.md
- **Developed by:** [Eldric Arbon](https://apify.com/the_eldric-arbon) (community)
- **Categories:** Developer tools
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## 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

### Python empty template

Big project between a friend and i

Start a new [web scraping](https://apify.com/web-scraping) project quickly and easily in Python with our empty project template. It provides a basic structure for the [Actor](https://apify.com/actors) with [Apify SDK](https://docs.apify.com/sdk/python/) and allows you to easily add your own functionality.

### Included features

- **[Apify SDK](https://docs.apify.com/sdk/python/)** for Python - a toolkit for building Apify [Actors](https://apify.com/actors) and scrapers in Python
- **[Input schema](https://docs.apify.com/platform/actors/development/input-schema)** - define and easily validate a schema for your Actor's input
- **[Request queue](https://docs.apify.com/sdk/python/docs/concepts/storages#working-with-request-queues)** - queues into which you can put the URLs you want to scrape
- **[Dataset](https://docs.apify.com/sdk/python/docs/concepts/storages#working-with-datasets)** - store structured data where each object stored has the same attributes

### How it works

Insert your own code to `async with Actor:` block. You can use the [Apify SDK](https://docs.apify.com/sdk/python/) with any other Python library.

### Resources

- [Python tutorials in Academy](https://docs.apify.com/academy/python)
- [Video guide on getting data using Apify API](https://www.youtube.com/watch?v=ViYYDHSBAKM)
- [Integration with Make, GitHub, Zapier, Google Drive, and other apps](https://apify.com/integrations)
- A short guide on how to build web scrapers using code templates:

[web scraper template](https://www.youtube.com/watch?v=u-i-Korzf8w)

### Getting started

For complete information [see this article](https://docs.apify.com/platform/actors/development#build-actor-at-apify-console). In short, you will:

1. Build the Actor
2. Run the Actor

### Pull the Actor for local development

If you would like to develop locally, you can pull the existing Actor from Apify console using Apify CLI:

1. Install `apify-cli`

   **Using Homebrew**

   ```bash
   brew install apify-cli
   ```

   **Using NPM**

   ```bash
   npm -g install apify-cli
   ```

2. Pull the Actor by its unique `<ActorId>`, which is one of the following:

   - unique name of the Actor to pull (e.g. "apify/hello-world")
   - or ID of the Actor to pull (e.g. "E2jjCZBezvAZnX8Rb")

   You can find both by clicking on the Actor title at the top of the page, which will open a modal containing both Actor unique name and Actor ID.

   This command will copy the Actor into the current directory on your local machine.

   ```bash
   apify pull <ActorId>
   ```

### Documentation reference

To learn more about Apify and Actors, take a look at the following resources:

- [Apify SDK for JavaScript documentation](https://docs.apify.com/sdk/js)
- [Apify SDK for Python documentation](https://docs.apify.com/sdk/python)
- [Apify Platform documentation](https://docs.apify.com/platform)
- [Join our developer community on Discord](https://discord.com/invite/jyEM2PRvMU)

# Actor input Schema

## `authorizationKey` (type: `string`):

Required authorization key to run this actor. Contact the administrator for access.

## `targetUrl` (type: `string`):

The URL to stress test (e.g., http://staging.example.com). MUST be your own infrastructure or explicitly authorized.

## `testDuration` (type: `integer`):

How long to run the test in seconds. No maximum limit. Default: 300 seconds (5 minutes). Examples: 3600 (1 hour), 86400 (24 hours), 604800 (1 week)

## `concurrentConnections` (type: `integer`):

Number of simultaneous slow connections to establish. Default: 50.

## `rampUpDuration` (type: `integer`):

The time over which to gradually increase concurrent connections to the target. Set to 0 to start all connections immediately. Default: 60 seconds.

## `headerSendInterval` (type: `integer`):

How often to send a keepalive header on each open connection. Each header resets the server's read timeout, keeping the connection alive without completing the request. Default: 15 seconds. This is overridden if 'Optimize Keep-Alive Interval' is enabled.

## `optimizeKeepaliveInterval` (type: `boolean`):

Run a quick pre-test to determine the server's connection timeout and dynamically set the optimal keep-alive interval. This overrides 'Keepalive Interval (seconds)' if enabled. Default: false.

## `attackMode` (type: `string`):

slowloris: keeps request headers incomplete (classic). rudy: completes headers then drips POST body — bypasses mod\_reqtimeout header limits. hybrid: half workers each mode (recommended).

## `useHttps` (type: `boolean`):

Whether to use TLS/SSL encryption for connections. Default: true.

## `randomizeUserAgents` (type: `boolean`):

Send random User-Agent headers to simulate diverse clients. Default: false.

## `socks5Proxy` (type: `string`):

Optional SOCKS5 proxy to route connections through (e.g., proxy.example.com:1080). Useful for testing through different network paths.

## `customProxyList` (type: `string`):

One proxy per line in user:pass@host:port format. Each connection picks a random proxy from this list. Takes priority over Proxy configuration below.

## `proxyConfiguration` (type: `object`):

Apify proxy settings. Enable to route connections through Apify residential or datacenter proxies.

## `mullvadEnabled` (type: `boolean`):

Before the test starts, the actor registers multiple WireGuard keys with your Mullvad account(s), picks random active relays, and launches local userspace WireGuard-to-SOCKS5 sidecars (wireproxy) — no elevated container permissions needed. All connections then rotate through these relays before any HTTP proxy. Requires Mullvad Account Number(s) below. Default: false.

## `mullvadAccounts` (type: `array`):

A list of Mullvad account numbers. The actor will attempt to register WireGuard devices for each account. If one account hits its device limit, it will try the next. Each account can specify its own number of devices.

## `antiAiAnalysis` (type: `boolean`):

Randomize header order, casing, and inject jittered decoy headers (Accept-Language, Accept-Encoding, X-Request-ID, etc.) so requests are harder to cluster by fingerprint. Default: true.

## `mixHttpPort80` (type: `boolean`):

For HTTPS targets on port 443, randomly send half the connections to port 80 instead of using TLS. Only enable if port 80 serves the same application — otherwise these connections are wasted (e.g. a 301 redirect closes them immediately). Default: false.

## Actor input object example

```json
{
  "testDuration": 300,
  "concurrentConnections": 50,
  "rampUpDuration": 60,
  "headerSendInterval": 15,
  "optimizeKeepaliveInterval": false,
  "attackMode": "hybrid",
  "useHttps": true,
  "randomizeUserAgents": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "mullvadEnabled": false,
  "mullvadAccounts": [],
  "antiAiAnalysis": true,
  "mixHttpPort80": false
}
```

# 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 = {
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("the_eldric-arbon/s44234214").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 = { "proxyConfiguration": { "useApifyProxy": True } }

# Run the Actor and wait for it to finish
run = client.actor("the_eldric-arbon/s44234214").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call the_eldric-arbon/s44234214 --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,the_eldric-arbon/s44234214"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

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