GET /projects/{project}/probes/{probeId}
Endpoint
Section titled “Endpoint”GET /api/v1/projects/{project}/probes/{probeId}Description
Section titled “Description”Returns one probe resource by its generated probe_id.
Path Parameters
Section titled “Path Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
project | string | Yes | Project name |
probeId | string | Yes | Generated probe identifier |
Example Request
Section titled “Example Request”curl -X GET http://localhost/api/v1/projects/status-page/probes/5be5db4b8f0d98f0c4b2c6f24395d5f7f8d4fe10 \ -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}" }}Status Codes
Section titled “Status Codes”200Probe returned401Missing or invalid API key404Probe not found