GET
/
v2
/
services
List service monitors
curl --request GET \
  --url https://app.pulseguard.nl/api/v2/services \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": [
    {
      "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "type": "http",
      "url": "<string>",
      "status": "up",
      "check_interval": 123,
      "timeout": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}
This endpoint retrieves a list of all your service monitors. Service monitors can be used to track non-HTTP services, like databases or servers, by checking if a specific port is open.

Authorizations

Authorization
string
header
required

API token generated from your PulseGuard dashboard

Query Parameters

page
integer
default:1

Page number for pagination

per_page
integer
default:15

Number of items per page

Required range: x <= 100

Response

200
application/json

Service monitors retrieved successfully

The response is of type object.