Subscription info
Returns the active datacenter subscription values stored on the authenticated account.
Use it to show plan name, expiration, subscription status, billing period and thread capacity in your own tools.
Rate limit10 requests / 60 seconds
RequiredapiKey, X-API-Key header alternative
Endpoint details
AuthenticationSend the customer API key as apiKey query parameter or as X-API-Key header.
Access stateThe user account must be ACTIVE and must have a usable datacenter subscription.
Thread capacityconcurrency is returned as the current plan thread limit.
CachingSuccessful responses should be treated as account data and not cached publicly.
Request · Python requests
import json
import requests
endpoint = "https://rotatingproxyhub.com/api/v1.0/datacenter/subscription-info"
api_key = "xxx"
response = requests.get(
endpoint,
params={"apiKey": api_key},
timeout=30
)
print(response.status_code)
print(json.dumps(response.json(), indent=2))Example response
{
"success": true,
"message": "Subscription plan retrieved successfully.",
"data": {
"name": "Datacenter Proxies | 200 Threads | Monthly",
"expiration": "12:35:09 05.08.2026",
"sub_status": "active",
"billing_period": "monthly",
"type": "Datacenter",
"concurrency": 200
}
}