GET/api/connectors-incidents

Retrieve active incidents by connector

Just what is wrong with each connector right now, keyed by the same id you get from GET https://api.pluggy.ai/connectors. Poll this to flag an affected bank on your own connector-selection screen before a user picks it and fails. It is the slim counterpart to the snapshot: a few kilobytes rather than a few hundred, because it carries no history, no resolved incidents and no timelines — the url on each incident links to those. Only incidents affecting a connector *at this moment* are listed. A scheduled maintenance is published days ahead and stays open the whole time, so it appears only once its window opens and disappears when the window closes. An incident affecting several institutions appears under each of their connector ids. Infrastructure-wide incidents belong to no connector and are not listed here — use the snapshot for those. Cached for 30s.

Responses

200Active incidents grouped by connector.
object
generatedAtstring (date-time)
connectorsobject

Keyed by Pluggy connector id. Only connectors with at least one active incident appear, and each list is ordered worst-first.

Example response

json
{
  "generatedAt": "2024-01-01T00:00:00Z",
  "connectors": null
}

Code Examples

bash
curl -X GET 'https://status.pluggy.ai/api/connectors-incidents' \
  -H 'Content-Type: application/json'

Try It