SIX

SIC Service Status API

Current operational status of the electronic payment services run by SIX Interbank Clearing Ltd, publicly documented with downloadable OpenAPI; GET /servicestatus on the documented production host returned HTTP 200 without authentication on 2026-07-21.

Operations 2

GET /servicestatus GET Status in JSON Format #
HEAD /servicestatus HEAD Status in JSON Format #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/sic-service-status-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

six-group-status-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SIC API v1 Status API
  description: The SIC status API provides information about the current status of the electronic payment services provided by SIX Interbank Clearing Ltd. The information in the status API shows live data.
  contact:
    url: https://www.six-group.com/de/products-services/banking-services/interbank-clearing/online-services/system-status.html
    email: contact.sic@six-group.com
  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
tags:
- name: status
  description: '**SIC Status**

    Information about about the status of various services can be found here.

    '
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'
    head:
      tags:
      - status
      summary: HEAD Status in JSON Format
      description: Service status data of the SIC service in JSON format (only head, no content).
      operationId: headServiceStatusJson
      responses:
        '200':
          description: Content can be downloaded with GET method.
          content: {}
components:
  schemas:
    ServiceStatusResponseEntry:
      required:
      - serviceIdentification
      - status
      - timestamp
      type: object
      properties:
        serviceIdentification:
          maxLength: 10
          minLength: 1
          type: string
          description: "Values for Production Services: PCI_P \nValues for Test environments:\n- SIC IP service: XCI_E; ACI_E; XCI_P; ACI_P; VCI_E; VCI_P\n"
          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.
x-original-swagger-version: '2.0'