Load Stress Test & Traffic Generator avatar
Load Stress Test & Traffic Generator
Try for free

1 day trial then $15.00/month - No credit card required now

View all Actors
Load Stress Test & Traffic Generator

Load Stress Test & Traffic Generator

onidivo/load-stress-test
Try for free

1 day trial then $15.00/month - No credit card required now

Perform load and stress tests against your website. Drive traffic and test your website tools and integrations.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "urls": [
8    {
9      "url": "https://bmwrepairguide.com/"
10    }
11  ],
12  "maxUrlDuplications": 0,
13  "maxCrawledPagesPerDomain": 0,
14  "maxHandledPagesPerRun": 20,
15  "proxyConfiguration": {
16    "useApifyProxy": true
17  },
18  "maxHandledPagesPerTime": 50,
19  "pageNavigationTimeoutMs": 60000
20}
21EOF
22
23# Run the Actor using an HTTP API
24# See the full API reference at https://docs.apify.com/api/v2
25curl "https://api.apify.com/v2/acts/onidivo~load-stress-test/runs?token=$API_TOKEN" \
26  -X POST \
27  -d @input.json \
28  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 23 monthly users
  • 3 stars
  • 97.6% runs succeeded
  • 0.011 hours response time
  • Created in Feb 2024
  • Modified 4 months ago