Skip to content

GET /probes

GET /api/v1/probes

Returns probes from all projects. Use the project query parameter to scope the list.

ParameterTypeRequiredDescription
projectstringNoExact project name filter
Terminal window
curl -X GET "http://localhost/api/v1/probes?project=status-page" \
-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}"
}
],
"meta": {
"count": 1
}
}
  • 200 Probes returned
  • 401 Missing or invalid API key