Skip to main content
GET
/
api
/
v1
/
disruptions
/
{id}
Get disruption
curl --request GET \
  --url https://app.larm.dev/api/v1/disruptions/{id}
import requests

url = "https://app.larm.dev/api/v1/disruptions/{id}"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://app.larm.dev/api/v1/disruptions/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://app.larm.dev/api/v1/disruptions/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://app.larm.dev/api/v1/disruptions/{id}"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://app.larm.dev/api/v1/disruptions/{id}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://app.larm.dev/api/v1/disruptions/{id}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "title": "API outage",
    "type": "disruption",
    "status": "identified",
    "impact": "major",
    "auto_created": false,
    "started_at": "2026-03-28T12:00:00Z",
    "resolved_at": null,
    "updates": [
      {
        "id": "770e8400-e29b-41d4-a716-446655440000",
        "status": "identified",
        "body": "Root cause found in database connection pool.",
        "posted_at": "2026-03-28T12:30:00Z",
        "posted_by": "user@example.com"
      },
      {
        "id": "660e8400-e29b-41d4-a716-446655440000",
        "status": "investigating",
        "body": "Investigating API errors.",
        "posted_at": "2026-03-28T12:00:00Z",
        "posted_by": "user@example.com"
      }
    ],
    "affected_components": [
      {
        "id": "880e8400-e29b-41d4-a716-446655440000",
        "name": "API",
        "status": "major_outage"
      }
    ],
    "inserted_at": "2026-03-28T12:00:00Z",
    "updated_at": "2026-03-28T12:30:00Z"
  }
}
Requires incidents:read permission.
id
string
required
Disruption UUID
{
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "title": "API outage",
    "type": "disruption",
    "status": "identified",
    "impact": "major",
    "auto_created": false,
    "started_at": "2026-03-28T12:00:00Z",
    "resolved_at": null,
    "updates": [
      {
        "id": "770e8400-e29b-41d4-a716-446655440000",
        "status": "identified",
        "body": "Root cause found in database connection pool.",
        "posted_at": "2026-03-28T12:30:00Z",
        "posted_by": "user@example.com"
      },
      {
        "id": "660e8400-e29b-41d4-a716-446655440000",
        "status": "investigating",
        "body": "Investigating API errors.",
        "posted_at": "2026-03-28T12:00:00Z",
        "posted_by": "user@example.com"
      }
    ],
    "affected_components": [
      {
        "id": "880e8400-e29b-41d4-a716-446655440000",
        "name": "API",
        "status": "major_outage"
      }
    ],
    "inserted_at": "2026-03-28T12:00:00Z",
    "updated_at": "2026-03-28T12:30:00Z"
  }
}