Skip to main content
GET
/
projects
/
{id}
/
incidents
Get project incidents
curl --request GET \
  --url https://api.justanotheruptime.com/projects/{id}/incidents \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "title": "<string>",
    "description": "<string>",
    "status": "<string>",
    "severity": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "monitor": {
      "id": "<string>",
      "name": "<string>",
      "url": "<string>"
    },
    "resolvedAt": "2023-11-07T05:31:56Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.justanotheruptime.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Project ID

Query Parameters

status
enum<string>

Filter incidents by status

Available options:
active,
resolved
limit
number

Number of incidents to return

Response

Project incidents

id
string
required

Incident ID

title
string
required

Incident title

description
string
required

Incident description

status
string
required

Current incident status

severity
string
required

Incident severity

createdAt
string<date-time>
required

When incident was created

monitor
object
required

Associated monitor

resolvedAt
string<date-time>

When incident was resolved