---
title: "List organization API keys"
method: GET
path: "/organization/admin_api_keys"
---

# List organization API keys

`GET /organization/admin_api_keys`

Retrieve a paginated list of organization admin 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
    - `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

---

[API](https://skmtc.net/openai/apis/openai-api-3.md) · [All operations](https://skmtc.net/openai/apis/openai-api-3/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/openai/openai-api-3/versions/74cbcf73838f/schema)
