Skip to content

GET /projects/{project}/probes/{probeId}

GET /api/v1/projects/{project}/probes/{probeId}

Returns one probe resource by its generated probe_id.

ParameterTypeRequiredDescription
projectstringYesProject name
probeIdstringYesGenerated probe identifier
Terminal window
curl -X GET http://localhost/api/v1/projects/status-page/probes/5be5db4b8f0d98f0c4b2c6f24395d5f7f8d4fe10 \
-H "X-Uplinkr-Api-Key: replace-me-with-a-long-random-key"
{
"data": {
"project": "status-page",
"probe_id": "5be5db4b8f0d98f0c4b2c6f24395d5f7f8d4fe10",
"url": "https://example.com/health",
"method": "GET",
"headers": {
"Accept": "application/json"
},
"body": "{\"ping\":true}"
}
}
  • 200 Probe returned
  • 401 Missing or invalid API key
  • 404 Probe not found