79662160

Date: 2025-06-11 14:33:17
Score: 0.5
Natty:
Report link

You can copy the curl from postman:

enter image description here

Then write a small bash script like:

#!/bin/bash

# This script sends the same cURL POST request 100 times to the specified endpoint.

# Loop from 1 to 100
for i in {1..100}
do
   # Print the current request number to the console to track progress
   echo "Sending request #$i..."

   curl 'YourAPIEndpointHere'

    # Uncomment the next line if you want to add a delay between requests
#    sleep 1
done

echo "Script finished. Sent 100 requests."
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: Eli Zatlawy