List country groups.

Fields

id (integer)

Primary key.

name (object)

Names of country group, defined by language.

None

GET /v1/research/country:group/?format=api
HTTP 200 OK
  Allow: GET, HEAD, OPTIONS
  Content-Type: application/json
  Vary: Accept
  
  {
    "count": 4,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 1,
            "name": {
                "de": "Nicht bekannt",
                "en": "unknown"
            }
        },
        {
            "id": 2,
            "name": {
                "de": "National",
                "en": "National"
            }
        },
        {
            "id": 3,
            "name": {
                "de": "EU",
                "en": "EU"
            }
        },
        {
            "id": 4,
            "name": {
                "de": "Drittstaaten",
                "en": "Non-EU countries"
            }
        }
    ]
}