GET
https://spideriq.ai
/
api
/
v1
/
admin
/
proxy
/
stats
curl -X GET "https://spideriq.ai/api/v1/admin/proxy/stats" \
  -H "X-Admin-Key: your_admin_key"
{
  "total_locations": 1,
  "online_locations": 1,
  "total_modems": 4,
  "online_modems": 4,
  "healthy_modems": 4,
  "total_iphones": 0,
  "online_iphones": 0,
  "healthy_iphones": 0,
  "total_devices": 4,
  "healthy_devices": 4,
  "total_requests_today": 0,
  "total_rotations_today": 0,
  "by_country": {
    "UA": 4
  },
  "by_device_type": {
    "modem": 4,
    "iphone": 0
  }
}
This endpoint requires Admin API Key authentication via the X-Admin-Key header.

Response

total_locations
integer
required
Total number of registered locations
online_locations
integer
required
Number of locations currently online
total_modems
integer
required
Total number of registered modems
online_modems
integer
required
Number of modems currently online
healthy_modems
integer
required
Number of modems healthy and ready for traffic
total_iphones
integer
Total number of registered iPhones (SpideriPhone)
online_iphones
integer
Number of iPhones currently online
total_devices
integer
required
Total devices (modems + iPhones)
healthy_devices
integer
required
Total healthy devices ready for traffic
total_requests_today
integer
Total proxy requests processed today
total_rotations_today
integer
Total IP rotations performed today
by_country
object
Device count breakdown by country code
by_device_type
object
Device count breakdown by type
curl -X GET "https://spideriq.ai/api/v1/admin/proxy/stats" \
  -H "X-Admin-Key: your_admin_key"
{
  "total_locations": 1,
  "online_locations": 1,
  "total_modems": 4,
  "online_modems": 4,
  "healthy_modems": 4,
  "total_iphones": 0,
  "online_iphones": 0,
  "healthy_iphones": 0,
  "total_devices": 4,
  "healthy_devices": 4,
  "total_requests_today": 0,
  "total_rotations_today": 0,
  "by_country": {
    "UA": 4
  },
  "by_device_type": {
    "modem": 4,
    "iphone": 0
  }
}