---
title: "GET Health Check"
url: "https://apiportal.six-group.com/apis/sic-service-status-api-v1-ch-v1/versions/0b356479-467d-4f2b-8689-37b87cd8508a/operations/getHealthCheckForGet"
---

> Full API specification: https://apiportal.six-group.com/apis/sic-service-status-api-v1-ch-v1/versions/0b356479-467d-4f2b-8689-37b87cd8508a.md

# GET Health Check

`GET` `/healthcheck`

Operation ID: `getHealthCheckForGet`

Returns a status message of the system.

## Responses

- `200` - Healthcheck successful

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: SIC Status API v1
  version: 1.0 (generated 2024-06-27T11:51:13Z)
servers:
  - url: https://api.six-group.com/api/sic/pci_p/status/v1
  - url: https://api.p2p.six-group.com/api/sic/pci_p/status/v1
  - url: https://api.fip.six-group.com/api/sic/pci_p/status/v1
paths:
  /healthcheck:
    get:
      tags:
        - healthcheck
      summary: GET Health Check
      description: Returns a status message of the system.
      operationId: getHealthCheckForGet
      responses:
        "200":
          description: Healthcheck successful
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/HealthCheckResponse"
components:
  schemas:
    HealthCheckResponse:
      required:
        - apiVersion
        - applicationVersion
        - environmentStage
        - message
        - receivedHeaders
        - requestDateTime
      type: object
      properties:
        message:
          maxLength: 100
          type: string
          description: Response message from health check.
          example: The health check GET request was successfully received and processed.
        requestDateTime:
          type: string
          description: According to RFC3339, section 5.6 in ISO 8601 with timezone and
            milliseconds.
          format: date-time
          example: 2024-12-21T10:52:05.1904957+01:00
        receivedHeaders:
          type: array
          items:
            type: object
            properties:
              headerName:
                type: string
                description: The name of the provided header.
                example: Accept
              headerValue:
                type: string
                description: As received
                example: application/json
        environmentStage:
          type: string
          description: The instance to which the request was sent to.
          example: X1
        applicationVersion:
          type: string
          description: The version of the API backend.
          example: 4.5.0-julia
        apiVersion:
          type: string
          description: The version of the API.
          example: 1.0.23
```
