curl --request GET \
--url https://api.worldmonitor.app/api/conflict/v1/list-acled-eventsimport requests
url = "https://api.worldmonitor.app/api/conflict/v1/list-acled-events"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.worldmonitor.app/api/conflict/v1/list-acled-events', 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://api.worldmonitor.app/api/conflict/v1/list-acled-events",
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://api.worldmonitor.app/api/conflict/v1/list-acled-events"
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://api.worldmonitor.app/api/conflict/v1/list-acled-events")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.worldmonitor.app/api/conflict/v1/list-acled-events")
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{
"events": [
{
"actors": [
"example"
],
"admin1": "example",
"country": "US",
"eventType": "all",
"fatalities": 1,
"id": "example-id"
}
],
"pagination": {
"nextCursor": "next-page-token",
"totalCount": 1
}
}{
"violations": [
{
"field": "<string>",
"description": "<string>"
}
]
}{
"message": "<string>"
}{
"message": "<string>"
}ListAcledEvents
ListAcledEvents retrieves ACLED armed-conflict events with country, location, actors, event type and fatalities, filterable by country and inclusive time range.
curl --request GET \
--url https://api.worldmonitor.app/api/conflict/v1/list-acled-eventsimport requests
url = "https://api.worldmonitor.app/api/conflict/v1/list-acled-events"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.worldmonitor.app/api/conflict/v1/list-acled-events', 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://api.worldmonitor.app/api/conflict/v1/list-acled-events",
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://api.worldmonitor.app/api/conflict/v1/list-acled-events"
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://api.worldmonitor.app/api/conflict/v1/list-acled-events")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.worldmonitor.app/api/conflict/v1/list-acled-events")
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{
"events": [
{
"actors": [
"example"
],
"admin1": "example",
"country": "US",
"eventType": "all",
"fatalities": 1,
"id": "example-id"
}
],
"pagination": {
"nextCursor": "next-page-token",
"totalCount": 1
}
}{
"violations": [
{
"field": "<string>",
"description": "<string>"
}
]
}{
"message": "<string>"
}{
"message": "<string>"
}Query Parameters
Start of time range (inclusive), Unix epoch milliseconds.
End of time range (inclusive), Unix epoch milliseconds.
Maximum items per page (1-100). Accepted but currently ignored; no-op until this handler supports the parameter.
Cursor for next page. Accepted but currently ignored; no-op until this handler supports the parameter.
Optional country filter (ISO 3166-1 alpha-2).
Optional JMESPath expression applied server-side to project or reduce the JSON response before it is returned (mirrors the MCP jmespath argument). Invalid expressions, expressions larger than 1024 UTF-8 bytes, or projections that exceed the 256 KB output cap return HTTP 400 with a {_jmespath_error, original_keys} envelope. Grammar and worked examples: https://www.worldmonitor.app/docs/mcp-jmespath.
Was this page helpful?
