---
title: "List countries"
method: GET
path: "/countries"
tags: ["Countries"]
---

# List countries

`GET /countries`

Get a list of countries. Useful for filtering works by author affiliation country.

## Query parameters

- `filter` string
- `sort` string
- `search` string
- `per_page` integer
- `page` integer
- `cursor` string
- `sample` integer
- `select` string
- `group_by` string
- `api_key` string, required

## Response `200`

Successful response

- CountriesListResponse
  - `meta` Meta — Metadata about the query results
    - `count` integer — Total number of results matching the query
    - `db_response_time_ms` integer — Database response time in milliseconds
    - `page` integer — Current page number
    - `per_page` integer — Number of results per page
    - `next_cursor` string — Cursor for the next page (when using cursor pagination)
    - `groups_count` integer, nullable — Number of groups when using group_by
    - `cost_usd` number — Cost of this request in USD
  - `results` Country[]
    - `id` string — The OpenAlex ID for this country.
    - `display_name` string — The full name of the country.
    - `country_code` string — ISO 3166-1 alpha-2 country code.
    - `description` string — A brief description of the country.
    - `display_name_alternatives` string[] — Alternate names for this country.
    - `continent` object — The [continent](/api-reference/continents)
      - `id` string
      - `display_name` string
    - `is_global_south` boolean — Whether this country is part of the Global South.
    - `ids` object — External identifiers:
      - `openalex` string
      - `iso` string
      - `wikidata` string
      - `wikipedia` string
    - `works_count` integer — The number of works with authors affiliated with institutions in this country.
    - `cited_by_count` integer — Total citations to works from this country.
    - `works_api_url` string — A URL that returns all works from authors in this country.
    - `authors_api_url` string — A URL that returns all authors with affiliations in this country.
    - `institutions_api_url` string — A URL that returns all institutions in this country.
    - `created_date` string, date — When this country was added to OpenAlex (ISO 8601 date).
    - `updated_date` string, date-time — When this country was last updated (ISO 8601 datetime).

## Other responses

- `400` — Bad request - invalid parameters
- `429` — Rate limit exceeded

---

[API](https://skmtc.net/openalex/apis/openalex-api.md) · [All operations](https://skmtc.net/openalex/apis/openalex-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/openalex/openalex-api/revisions/60b6c8bd0799/schema)
