---
title: "List all organization and project API keys."
method: GET
path: "/organization/admin_api_keys"
---

# List all organization and project API keys.

`GET /organization/admin_api_keys`

List organization API keys

## Query parameters

- `after` string, nullable — Return keys with IDs that come after this ID in the pagination order.
- `order` 'asc' | 'desc' — Order results by creation time, ascending or descending.
- `limit` integer — Maximum number of keys to return.

## Response `200`

A list of organization API keys.

- ApiKeyList
  - `object` 'list', required
  - `data` AdminApiKey[], required
    - `object` 'organization.admin_api_key', required — The object type, which is always `organization.admin_api_key`
    - `id` string, required — The identifier, which can be referenced in API endpoints
    - `name` string, nullable — The name of the API key
    - `redacted_value` string, required — The redacted value of the API key
    - `created_at` integer, required — The Unix timestamp (in seconds) of when the API key was created
    - `expires_at` integer, nullable, required — The Unix timestamp (in seconds) of when the API key expires
    - `last_used_at` integer, nullable — The Unix timestamp (in seconds) of when the API key was last used
    - `owner` object, required
      - `type` string — Always `user`
      - `object` string — The object type, which is always organization.user
      - `id` string — The identifier, which can be referenced in API endpoints
      - `name` string — The name of the user
      - `created_at` integer — The Unix timestamp (in seconds) of when the user was created
      - `role` string — Always `owner`
  - `has_more` boolean, required
  - `first_id` string, nullable
  - `last_id` string, nullable

## Changes

- **2026-06-16** `506a44267b3f` — 1 info
  - added the required property `data/items/expires_at` to the response with the `200` status
- **2026-05-01** `918e83711c91` — 5 breaking, 1 warning
  - the response property `data/items/last_used_at` became optional for the status `200`
  - the response property `data/items/name` became optional for the status `200`
  - the response property `first_id` became optional for the status `200`
  - the response property `last_id` became optional for the status `200`
  - …2 more
- **2026-05-01** `72f65c459c35` — 2 breaking, 2 warning, 5 info
  - response property `first_id` list-of-types was widened by adding types `null` to media type `application/json` of response `200`
  - response property `last_id` list-of-types was widened by adding types `null` to media type `application/json` of response `200`
  - added the new `list` enum value to the `object` response property for the response status `200`
  - added the new `organization.admin_api_key` enum value to the `data/items/object` response property for the response status `200`
  - …5 more
- …earlier changes not shown

[Full history](https://skmtc.dev/openai/apis/openai-api/changes/organization/admin_api_keys/get.md)

---

[API](https://skmtc.dev/openai/apis/openai-api.md) · [All operations](https://skmtc.dev/openai/apis/openai-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/openai/openai-api/revisions/dcd35773a322/schema)
