Hi there,
All work has been completed. We’ve fixed several UI bugs and migrated the captcha system to our in-house solution.
We’ve also added two new API routes:
GET /capacity
Retrieve current global slot usage and limits.
Example Request:
/api/v1/capacity?key=YOUR_API_KEY
Example Response:
{
"success": true,
"capacity": {
"global": { "used": 3, "limit": 60 }
}
}
GET /plan
Retrieve the plan associated with your API key.
Example Request:
/api/v1/plan?key=YOUR_API_KEY
Example Response:
{
"success": true,
"user": { "id": "User #8j43jmffj" },
"plan": {
"name": "pro",
"maxConcurrent": 2,
"maxDuration": 300,
"hasApiAccess": true,
"expiresAt": "2025-01-01T00:00:00.000Z",
"status": "active"
}
}
You can view more details here: https://satellitestresser.st/api-manager
All work has been completed. We’ve fixed several UI bugs and migrated the captcha system to our in-house solution.
We’ve also added two new API routes:
GET /capacity
Retrieve current global slot usage and limits.
Example Request:
/api/v1/capacity?key=YOUR_API_KEY
Example Response:
{
"success": true,
"capacity": {
"global": { "used": 3, "limit": 60 }
}
}
GET /plan
Retrieve the plan associated with your API key.
Example Request:
/api/v1/plan?key=YOUR_API_KEY
Example Response:
{
"success": true,
"user": { "id": "User #8j43jmffj" },
"plan": {
"name": "pro",
"maxConcurrent": 2,
"maxDuration": 300,
"hasApiAccess": true,
"expiresAt": "2025-01-01T00:00:00.000Z",
"status": "active"
}
}
You can view more details here: https://satellitestresser.st/api-manager

