[GET] Get incident by ID

Modified on Tue, 11 Feb at 3:47 AM

https://api.s7risk.com

The Incident API provides well constructed high-quality, highly-tailored and scalable threat intelligence data.

GET /incidents/{{ID}}Get incident by ID

This endpoint gets detailed information about the requested incident.

HTTP Request

curl -X GET 'https://api.s7risk.com/incidents/{{ID}}' \' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer {{YOUR_AUTHENTICATION_TOKEN}}' \
  --compressed

Headers

NameTypeRequiredDescription
Authorizationstring✔️Your authentication token (see the Auth API section for more information)

HTTP Response

{
    "id": "IN-224368",
    "organisationId": "08e310b2-2043-4d46-a821-0fa2fca70cf7",
    "reporter": {
        "id": "abde3c19-32ec-467b-9125-3f4ec1761339",
        "name": "Joe Bloggs",
        "picture": "https://eu.ui-avatars.com/api/?name=Joe+Bloggs&size=512"
    },
    "assigneeId": null,
    "category": {
        "id": "661b7990-10f9-4a19-84b2-8a6030951314",
        "name": "Indirect Weapons",
        "colour": "#2F4155"
    },
    "type": {
        "id": "190945a1-2347-4020-8ed1-4e152537b47d",
        "name": "Ballistic Missile"
    },
    "summary": "U.S. test Minuteman III ICBM missile from Vandenberg Air Force Base in California",
    "description": "A Minuteman III Intercontinental Ballistic Missile was fired from the Vandenberg Air Force Base in California. The missile was launched across the Pacific towards the Kwajalein Atoll in the Pacific Ocean. The test was a routine test that had been scheduled for a while.",
    "casualties": {
        "civilianDeaths": 0,
        "civilianInjuries": 0,
        "criminalDeaths": 0,
        "criminalInjuries": 0,
        "emergencyDeaths": 0,
        "emergencyInjuries": 0,
        "militaryDeaths": 0,
        "militaryInjuries": 0,
        "policeDeaths": 0,
        "policeInjuries": 0
    },
    "location": {
        "longitude": -120.577868,
        "latitude": 34.740757,
        "accuracy": 1,
        "timeZone": "America/Los_Angeles",
        "utcOffset": -28800
    },
    "countries": [
        {
            "code": "USA",
            "name": "United States",
            "alpha2": null
        }
    ],
    "map": {
        "id": "898cf6ca-ada5-48b2-bbb7-6dc2f3025505",
        "type": "FeatureCollection",
        "features": [
            {
                "id": "c1a3749d-1802-4b56-9b60-b560c840bc62",
                "type": "Feature",
                "geometry": {
                    "type": "Point",
                    "coordinates": [
                        -120.577868,
                        34.740757
                    ]
                },
                "properties": {
                    "icon": "icon",
                    "name": "Approximate location of the incident",
                    "colour": "#2F4155",
                    "description": "",
                    "meta": null
                }
            }
        ]
    },
    "narratives": [],
    "affectedSectors": [
        {
            "id": "cda9b37f-f044-45bd-93a1-3a44dfbb433b",
            "sector": {
                "id": "668d330e-aee5-4291-be98-df9c32b5b420",
                "name": "Military"
            }
        }
    ],
    "references": [
        {
            "id": "23c26623-fc22-4a9e-9819-9a2d55498485",
            "link": "https://www.rt.com/usa/450812-us-ballistic-missile-launch-minuteman/",
            "title": "US test-launches Minuteman ICBM from southern California (VIDEO) — RT USA News",
            "medium": {
                "id": "0dc1784f-9a7e-42c8-a432-79dbfa805f63",
                "name": "RT International"
            },
            "source": {
                "id": "91a5e6f1-2227-4a15-a647-df2d65f45560",
                "name": "Unknown"
            },
            "status": "pending",
            "citation": "Unknown - RT International - 6 Feb 2019",
            "publishedAt": 1549411200
        }
    ],
    "involvedParties": [
        {
            "id": "fe5ad0c5-7ee8-4a1a-8a3c-77897dec376f",
            "type": "group",
            "involvement": "Actor",
            "group": {
                "id": "8e5bdef3-90f2-4360-92b9-639d78651a2b",
                "name": "United States Air Force"
            }
        }
    ],
    "links": [],
    "startedAt": {
        "timestamp": 1549436460,
        "localTime": "2019-02-05T23:01:00-0800"
    },
    "endedAt": {
        "timestamp": 1549436460,
        "localTime": "2019-02-05T23:01:00-0800"
    },
    "isOngoing": false,
    "themes": [],
    "tags": [
        {
            "name": "minutemaniii",
            "slug": "minutemaniii"
        }
    ],
    "impact": {
        "rating": -1,
        "shortDescription": "Unknown",
        "longDescription": "Impact has not been assessed or is unknown."
    },
    "counts": {
        "affectedSectors": 1,
        "casualties": 0,
        "involvedParties": 1,
        "links": 0,
        "mapFeatures": 1,
        "narratives": 0,
        "references": 1,
        "themes": 0,
        "tags": 1,
        "watchers": 0
    },
    "status": "approved",
    "isWatched": false,
    "draftedAt": 1549543977,
    "reportedAt": 1549544353,
    "reviewedAt": 1549544353,
    "updatedAt": 1549544353,
    "originId": null
}

Success

CodeStatusDescription
200SuccessReturns a body containing detailed information about the requested incident

Errors

CodeStatusDescription
401UnauthorizedExpired or Invalid Authentication token
404Not FoundAn incident with the provided ID could not be found

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article