SwiftGoma.SwiftGoma

Search endpoints

Jump to any API endpoint by name, method, or path

Incidents

List incidents

GET/api/v1/incidents

Lists incidents, most recent first — powers a public status page. No authentication required.

No authentication required
Public

Query parameters

limitnumber
Max 200. Defaults to 50.
Request
curl --request GET \
  --url https://api.swiftgoma.com/api/v1/incidents
200Example response
{
  "success": true,
  "data": [
    {
      "id": "inc_1a2b3c",
      "title": "Retards de livraison à Goma",
      "description": "Certains livreurs rencontrent des retards liés aux conditions de circulation.",
      "severity": "MINOR",
      "status": "INVESTIGATING",
      "resolvedAt": null,
      "createdAt": "2026-02-15T08:00:00.000Z",
      "updatedAt": "2026-02-15T08:00:00.000Z"
    }
  ]
}