Skip to main content
GET
/
continents
/
{id}
Get a single continent
curl --request GET \
  --url 'https://api.openalex.org/continents/{id}?api_key='
{
  "id": "https://openalex.org/continents/Q49",
  "display_name": "<string>",
  "description": "<string>",
  "display_name_alternatives": [
    "<string>"
  ],
  "countries": [
    {
      "id": "<string>",
      "display_name": "<string>"
    }
  ],
  "ids": {
    "openalex": "<string>",
    "wikidata": "<string>"
  },
  "created_date": "2023-12-25",
  "updated_date": "2023-11-07T05:31:56Z"
}

Authorizations

api_key
string
query
required

Your OpenAlex API key. Get a free key at https://openalex.org/settings/api

Path Parameters

id
string
required

Wikidata Q-ID (e.g., Q49 for North America)

Query Parameters

select
string

Comma-separated list of fields to return. Reduces response size. Example: select=id,display_name,cited_by_count

api_key
string
required

Your OpenAlex API key (required). Get a free key at https://openalex.org/settings/api

Response

Successful response

Geographic continent (7 total)

id
string

The OpenAlex ID for this continent (uses Wikidata Q-IDs).

Example:

"https://openalex.org/continents/Q49"

display_name
string

The name of the continent.

description
string

A brief description of the continent.

display_name_alternatives
string[]

Alternate names for this continent.

countries
object[]

The countries within this continent. Each object has id and display_name.

ids
object

External identifiers:

created_date
string<date>

When this continent was added to OpenAlex (ISO 8601 date).

updated_date
string<date-time>

When this continent was last updated (ISO 8601 datetime).