GET api/battledeaths/{resourceversion}?page={page}&pagesize={pagesize}&key={key}

Returns UCDP Prio conflicts matching the given filter predicates. The filter is optional and if not given all ged events will be returned. Paging is also possible - and required - by a API consumer without API access token.

Request Information

Parameters

NameDescriptionAdditional information
resourceVersion
Version of the dataset requested. [Required]

Define this parameter in the request URI.

filter
A filter describing what attributes to filter on. See @ActorFilter. [Optional]

Define this parameter in the request URI.

page
The page offset. Zero based. Defaults to 0. [Optional]

Define this parameter in the request URI.

pageSize
The size of the page.[Optional]

Define this parameter in the request URI.

key
The size of the page.[Optional]

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "TotalCount": 1,
  "TotalPages": 2,
  "PreviousPageUrl": "sample string 3",
  "NextPageUrl": "sample string 4",
  "Result": [
    {
      "conflict_id": "sample string 1",
      "dyad_id": "sample string 2",
      "location_inc": "sample string 3",
      "side_a": "sample string 4",
      "side_a_id": "sample string 5",
      "side_a_2nd": "sample string 6",
      "side_b": "sample string 7",
      "side_b_id": "sample string 8",
      "side_b_2nd": "sample string 9",
      "incompatibility": "sample string 10",
      "territory_name": "sample string 11",
      "year": "sample string 12",
      "bd_best": "sample string 13",
      "bd_low": "sample string 14",
      "bd_high": "sample string 15",
      "type_of_conflict": "sample string 16",
      "battle_location": "sample string 17",
      "gwno_a": "sample string 18",
      "gwno_a_2nd": "sample string 19",
      "gwno_b": "sample string 20",
      "gwno_b_2nd": "sample string 21",
      "gwno_loc": "sample string 22",
      "gwno_battle": "sample string 23",
      "region": "sample string 24",
      "version": "sample string 25"
    },
    {
      "conflict_id": "sample string 1",
      "dyad_id": "sample string 2",
      "location_inc": "sample string 3",
      "side_a": "sample string 4",
      "side_a_id": "sample string 5",
      "side_a_2nd": "sample string 6",
      "side_b": "sample string 7",
      "side_b_id": "sample string 8",
      "side_b_2nd": "sample string 9",
      "incompatibility": "sample string 10",
      "territory_name": "sample string 11",
      "year": "sample string 12",
      "bd_best": "sample string 13",
      "bd_low": "sample string 14",
      "bd_high": "sample string 15",
      "type_of_conflict": "sample string 16",
      "battle_location": "sample string 17",
      "gwno_a": "sample string 18",
      "gwno_a_2nd": "sample string 19",
      "gwno_b": "sample string 20",
      "gwno_b_2nd": "sample string 21",
      "gwno_loc": "sample string 22",
      "gwno_battle": "sample string 23",
      "region": "sample string 24",
      "version": "sample string 25"
    },
    {
      "conflict_id": "sample string 1",
      "dyad_id": "sample string 2",
      "location_inc": "sample string 3",
      "side_a": "sample string 4",
      "side_a_id": "sample string 5",
      "side_a_2nd": "sample string 6",
      "side_b": "sample string 7",
      "side_b_id": "sample string 8",
      "side_b_2nd": "sample string 9",
      "incompatibility": "sample string 10",
      "territory_name": "sample string 11",
      "year": "sample string 12",
      "bd_best": "sample string 13",
      "bd_low": "sample string 14",
      "bd_high": "sample string 15",
      "type_of_conflict": "sample string 16",
      "battle_location": "sample string 17",
      "gwno_a": "sample string 18",
      "gwno_a_2nd": "sample string 19",
      "gwno_b": "sample string 20",
      "gwno_b_2nd": "sample string 21",
      "gwno_loc": "sample string 22",
      "gwno_battle": "sample string 23",
      "region": "sample string 24",
      "version": "sample string 25"
    }
  ]
}