Skip to content

GET /projects

GET /api/v1/projects

Returns all stored projects. You can optionally filter the result with the project query parameter.

ParameterTypeRequiredDescription
projectstringNoExact project name filter
Terminal window
curl -X GET http://localhost/api/v1/projects \
-H "X-Uplinkr-Api-Key: replace-me-with-a-long-random-key"
{
"data": [
{
"project": "status-page",
"label": "Status Page",
"description": "Public status page monitoring",
"status": "enabled"
}
],
"meta": {
"count": 1
}
}
  • 200 Projects returned successfully
  • 401 Missing or invalid API key