Agents API
Manage monitoring agents and locations via the CuliUptime API.
📍 List Available Agents
Get all monitoring agents and their locations.
Request:
GET /api/v1/agents
Example:
curl -X GET \
-b "session_cookie=YOUR_SESSION" \
https://uptime.culiops.net/api/v1/agents
Response:
{
"data": [
{
"id": "us-east-1",
"name": "US East (Virginia)",
"location": "United States",
"region": "us-east",
"status": "online",
"load": 0.45,
"response_time": 12
}
]
}
Coming soon: Full agent management API documentation.