For the complete documentation index, see llms.txt. This page is also available as Markdown.

Health

Get health status

get
/health

Returns the health status and the version of the Fotokite API.

Responses
200

API is healthy

application/json

Health response

statusstringRequired

Health status

Example: OK
api_versionstringRequired

SemVer version of the Fotokite API.

Example: 1.0.1
get/health
GET /api/health HTTP/1.1
Host: 192.168.2.100:3128
Accept: */*
{
  "status": "OK",
  "api_version": "1.0.1"
}

Get health status

get
/v1/health

Returns the health status and the version of the Fotokite API.

Responses
200

API is healthy

application/json

Health response

statusstringRequired

Health status

Example: OK
api_versionstringRequired

SemVer version of the Fotokite API.

Example: 1.0.1
get/v1/health
GET /api/v1/health HTTP/1.1
Host: 192.168.2.100:3128
Accept: */*
{
  "status": "OK",
  "api_version": "1.0.1"
}

Last updated