Status API
Information
The endpoints described in this section are hosted on status.comgate.cz, not on payments.comgate.cz.
Outages
The endpoint returns a list of current, planned and recently resolved outages of payment methods.
URL: GET https://status.comgate.cz/outages
Example response:
[
{
"id": 123,
"name_cs": "Platební karty",
"name_sk": "Platobné karty",
"name_en": "Card payment",
"date_from": "2025-06-07T23:30:00Z",
"date_to": "2025-06-08T00:00:00Z",
"date_published": "2025-06-04T07:05:54Z",
"detail_cs": "V době 8.6.2025 01:30 - 02:00 nedostupnost platby platební kartou.",
"detail_sk": "V čase 8.6.2025 01:30 - 02:00 nedostupnosť platby platobnou kartou.",
"detail_en": "Card payment unavailable on 8.6.2025 01:30 - 02:00.",
"methods": ["CARD_CZ_COMGATE"],
"type": "COMPLETE",
"scheduled": true
}
]
Response parameters:
| Parameter | Type | Description |
|---|---|---|
id | integer | Internal outage identifier |
name_cs | string | Outage name in Czech |
name_sk | string | Outage name in Slovak |
name_en | string | Outage name in English |
date_from | string | Outage start time in ISO 8601 format (UTC) |
date_to | string | Outage end time in ISO 8601 format (UTC) |
date_published | string | Outage publication date in ISO 8601 format (UTC) |
detail_cs | string | Detailed outage description in Czech |
detail_sk | string | Detailed outage description in Slovak |
detail_en | string | Detailed outage description in English |
methods | string[] | List of affected payment methods — all available values can be retrieved from the /methods endpoint |
type | string | Outage type: COMPLETE (full outage), PAYMENT_BUTTON (payment button), QR_CODE (QR payment) |
scheduled | boolean | true — planned maintenance, false — unplanned outage |
Payment Gateway Status
The endpoint returns the current status of the payment gateway.
URL: GET https://status.comgate.cz/health
Example response:
{
"gateway": "OK",
"date": "2025-06-04T07:05:54Z"
}
Response parameters:
| Parameter | Type | Description |
|---|---|---|
gateway | string | OK — payments can be created via methods that are not currently experiencing an outage.OUTAGE — complete gateway outage. |
date | string | Current server date and time in ISO 8601 format (UTC) |