List countries.

Fields

id (integer)

Primary key.

name (object)

Names of country, defined by language.

iso (object)

ISO codes of country.

None

GET /v1/research/country/?format=api&offset=160
HTTP 200 OK
  Allow: GET, HEAD, OPTIONS
  Content-Type: application/json
  Vary: Accept
  
  {
    "count": 170,
    "next": null,
    "previous": "https://api-test.medunigraz.at/v1/research/country/?format=api&limit=20&offset=140",
    "results": [
        {
            "id": 858,
            "name": {
                "de": "Uruguay",
                "en": "Uruguay"
            },
            "iso": {
                "alpha2": "UY",
                "alpha3": "URY"
            }
        },
        {
            "id": 860,
            "name": {
                "de": "Usbekistan",
                "en": "Uzbekistan"
            },
            "iso": {
                "alpha2": "UZ",
                "alpha3": "UZB"
            }
        },
        {
            "id": 862,
            "name": {
                "de": "Venezuela",
                "en": "Venezuela"
            },
            "iso": {
                "alpha2": "VE",
                "alpha3": "VEN"
            }
        },
        {
            "id": 887,
            "name": {
                "de": "Jemen",
                "en": "Yemen"
            },
            "iso": {
                "alpha2": "YE",
                "alpha3": "YEM"
            }
        },
        {
            "id": 891,
            "name": {
                "de": "Jugoslawien",
                "en": "Yugoslavia"
            },
            "iso": {
                "alpha2": null,
                "alpha3": null
            }
        },
        {
            "id": 894,
            "name": {
                "de": "Sambia",
                "en": "Zambia"
            },
            "iso": {
                "alpha2": "ZM",
                "alpha3": "ZMB"
            }
        },
        {
            "id": 998,
            "name": {
                "de": "Internationale Organisation",
                "en": "International Organization"
            },
            "iso": {
                "alpha2": null,
                "alpha3": null
            }
        },
        {
            "id": 999,
            "name": {
                "de": "Europäische Union",
                "en": "European Union"
            },
            "iso": {
                "alpha2": null,
                "alpha3": null
            }
        },
        {
            "id": 995,
            "name": {
                "de": "Kosovo",
                "en": "Kosovo"
            },
            "iso": {
                "alpha2": null,
                "alpha3": null
            }
        },
        {
            "id": 1000,
            "name": {
                "de": "Europa (gesamt)",
                "en": "Europe (entire)"
            },
            "iso": {
                "alpha2": null,
                "alpha3": null
            }
        }
    ]
}