GET /probes
Endpoint
Section titled “Endpoint”GET /api/v1/probesDescription
Section titled “Description”Returns probes from all projects. Use the project query parameter to scope the list.
Query Parameters
Section titled “Query Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
project | string | No | Exact project name filter |
Example Request
Section titled “Example Request”curl -X GET "http://localhost/api/v1/probes?project=status-page" \ -H "X-Uplinkr-Api-Key: replace-me-with-a-long-random-key"Example Response
Section titled “Example Response”{ "data": [ { "project": "status-page", "probe_id": "5be5db4b8f0d98f0c4b2c6f24395d5f7f8d4fe10", "url": "https://example.com/health", "method": "GET", "headers": { "Accept": "application/json" }, "body": "{\"ping\":true}" } ], "meta": { "count": 1 }}Status Codes
Section titled “Status Codes”200Probes returned401Missing or invalid API key