Skip to content

Health Check

Service health check endpoint

Operations

Service health check

Request

Lightweight endpoint to verify that the SPAR service is operational. This endpoint is designed exclusively for service availability checks and should be used instead of making fake service calls with invalid data.

Important: Never use regular service calls for availability checks by using invalid or random search criteria, repeated queries against real individuals, or automated loops that simulate usage. Always use this health endpoint for system availability verification.

curl -i -X GET \
  https://se-webservice.apps.creditsafe.com/spar/health

Responses

Service is healthy and operational

Bodyapplication/json
statusstring

Health status of the service

Example:"healthy"
servicestring

Name of the service

Example:"SPAR Consumer (1231)"
timestampstring, (date-time)

ISO 8601 timestamp of the health check

Example:"2025-09-15T13:27:14.3794136Z"
versionstring

Service version/environment

Example:"production"
Response
{ "status": "healthy", "service": "SPAR Consumer (1231)", "timestamp": "2025-09-15T13:27:14.3794136Z", "version": "production" }