Skip to main content
The ConflictService provides APIs for accessing armed conflict event data from multiple authoritative sources including ACLED (Armed Conflict Location & Event Data Project), UCDP (Uppsala Conflict Data Program), and HAPI/HDX (Humanitarian API) for humanitarian summaries.

Base Path

ListAcledEvents

Retrieves armed conflict events from the ACLED dataset with filtering by time range and country. Endpoint: GET /api/conflict/v1/list-acled-events

Request Parameters

int64
Start of time range (inclusive), Unix epoch milliseconds
int64
End of time range (inclusive), Unix epoch milliseconds
int32
Maximum items per page (1-100)
string
Cursor for next page
string
Optional country filter (ISO 3166-1 alpha-2)

Response

AcledConflictEvent[]
The list of ACLED conflict events
PaginationResponse
Pagination metadata

Example Request

Example Response


ListUcdpEvents

Retrieves georeferenced violence events from the UCDP (Uppsala Conflict Data Program) dataset. Endpoint: GET /api/conflict/v1/list-ucdp-events

Request Parameters

int64
Start of time range (inclusive), Unix epoch milliseconds
int64
End of time range (inclusive), Unix epoch milliseconds
int32
Maximum items per page (1-100)
string
Cursor for next page
string
Optional country filter (ISO 3166-1 alpha-2)

Response

UcdpViolenceEvent[]
The list of UCDP violence events
PaginationResponse
Pagination metadata

Example Request


GetHumanitarianSummary

Retrieves a humanitarian overview for a country from HAPI/HDX, including conflict event counts and fatality statistics. Endpoint: GET /api/conflict/v1/get-humanitarian-summary

Request Parameters

string
required
ISO 3166-1 alpha-2 country code (e.g., “YE”, “SD”, “SO”)

Response

HumanitarianCountrySummary
The humanitarian summary for the country

Example Request

Example Response


ListIranEvents

Retrieves scraped conflict events from LiveUAMap Iran for real-time situational awareness. Endpoint: GET /api/conflict/v1/list-iran-events

Request Parameters

No parameters required.

Response

IranEvent[]
The list of Iran conflict events
int64
Timestamp when the data was scraped, as Unix epoch milliseconds

Example Request