GET api/onesided/{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 @OneSidedFilter. [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",
      "actor_id": "sample string 3",
      "coalition_components": "sample string 4",
      "actor_name": "sample string 5",
      "actor_name_fulltext": "sample string 6",
      "actor_name_mothertongue": "sample string 7",
      "year": 1,
      "best_fatality_estimate": 1,
      "low_fatality_estimate": 1,
      "high_fatality_estimate": 1,
      "is_government_actor": 1,
      "location": "sample string 8",
      "gwno_location": "sample string 9",
      "gwnoa": "sample string 10",
      "region": "sample string 11",
      "version": "sample string 12"
    },
    {
      "conflict_id": "sample string 1",
      "dyad_id": "sample string 2",
      "actor_id": "sample string 3",
      "coalition_components": "sample string 4",
      "actor_name": "sample string 5",
      "actor_name_fulltext": "sample string 6",
      "actor_name_mothertongue": "sample string 7",
      "year": 1,
      "best_fatality_estimate": 1,
      "low_fatality_estimate": 1,
      "high_fatality_estimate": 1,
      "is_government_actor": 1,
      "location": "sample string 8",
      "gwno_location": "sample string 9",
      "gwnoa": "sample string 10",
      "region": "sample string 11",
      "version": "sample string 12"
    },
    {
      "conflict_id": "sample string 1",
      "dyad_id": "sample string 2",
      "actor_id": "sample string 3",
      "coalition_components": "sample string 4",
      "actor_name": "sample string 5",
      "actor_name_fulltext": "sample string 6",
      "actor_name_mothertongue": "sample string 7",
      "year": 1,
      "best_fatality_estimate": 1,
      "low_fatality_estimate": 1,
      "high_fatality_estimate": 1,
      "is_government_actor": 1,
      "location": "sample string 8",
      "gwno_location": "sample string 9",
      "gwnoa": "sample string 10",
      "region": "sample string 11",
      "version": "sample string 12"
    }
  ]
}