---
title: "List keywords"
method: GET
path: "/keywords"
tags: ["Keywords"]
---

# List keywords

`GET /keywords`

Get a list of keywords with optional filtering, searching, sorting, and pagination.

## 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

- KeywordsListResponse
  - `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` Keyword[]
    - `id` string — The OpenAlex ID for this keyword.
    - `display_name` string — The English-language label of the keyword.
    - `works_count` integer — The number of works tagged with this keyword.
    - `cited_by_count` integer — The total citations to works tagged with this keyword.
    - `works_api_url` string
    - `created_date` string, date — When this keyword was added to OpenAlex (ISO 8601 date).
    - `updated_date` string, date-time — When this keyword was last updated (ISO 8601 datetime).
  - `group_by` GroupByResult[]
    - `key` string — The group key value
    - `key_display_name` string — Human-readable name for the key
    - `count` integer — Number of results in this group

## 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)
