---
title: "GET Status in JSON Format"
url: "https://apiportal.six-group.com/apis/sic-service-status-api-v1-ch-v1/versions/0b356479-467d-4f2b-8689-37b87cd8508a/operations/getServiceStatusJson"
---

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

# GET Status in JSON Format

`GET` `/servicestatus`

Operation ID: `getServiceStatusJson`

Returns the service status data of the SIC service as a JSON object.

## Responses

- `200` - Service status in JSON format

## 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:
  /servicestatus:
    get:
      tags:
        - status
      summary: GET Status in JSON Format
      description: Returns the service status data of the SIC service as a JSON object.
      operationId: getServiceStatusJson
      responses:
        "200":
          description: Service status in JSON format
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/ServiceStatusResponseEntry"
components:
  schemas:
    ServiceStatusResponseEntry:
      required:
        - serviceIdentification
        - status
        - timestamp
      type: object
      properties:
        serviceIdentification:
          maxLength: 10
          minLength: 1
          type: string
          description: |
            Values for Production Services: PCI_P 
            Values for Test environments:
            - SIC IP service: XCI_E; ACI_E; XCI_P; ACI_P; VCI_E; VCI_P
          example: PCI_P
        status:
          maxLength: 20
          minLength: 2
          type: string
          description: Status information for the service is either UP or DOWN or UNKNOWN.
          example: UP
        timestamp:
          type: string
          description: Date and time (according to ISO 8601) at which this status data was
            last checked.
          format: date-time
          example: 2024-12-21T10:52:05.1904957+01:00
      description: Status data for one service.
```
