---
title: "List Workspace API Keys"
method: GET
path: "/v1/{workspace}/ws_api_key/"
---

# List Workspace API Keys

`GET /v1/{workspace}/ws_api_key/`

List API keys scoped to a workspace. Secret values are never returned on list; only a masked preview is shown.

## Path parameters

- `workspace` string, required

## Response `200`

Successfully retrieved API keys.

- ManagementWorkspaceApiKeyListResponse
  - `meta` ManagementListMeta — Pagination metadata (when applicable)
    - `count` integer — Total items matching the query
    - `limit` integer, nullable — Maximum number of results returned per page.
    - `offset` integer, nullable — Starting position of the returned results.
  - `results` ManagementWorkspaceApiKey[]
    - `id` string — Unique identifier of the API key.
    - `masked_api_key` string — Masked preview of the API key used in list responses.
    - `is_deleted` boolean — Indicates whether the API key has been deleted.
    - `name` string — Label for the API key.
    - `allowed_domains` string[] — Domains allowed to use this key.
    - `created_at` string, date-time — Timestamp when the API key was created.
    - `created_by` ManagementActor, nullable — Identity that performed an action (created, updated, rolled, deleted, rotated).
      - `name` string — Display name of the actor.
      - `email` string — Email address of the actor.
    - `deleted_at` string, date-time, nullable — Timestamp when the API key was deleted, if applicable.
    - `deleted_by` ManagementActor, nullable — Identity that performed an action (created, updated, rolled, deleted, rotated).
      - `name` string — Display name of the actor.
      - `email` string — Email address of the actor.

## Other responses

- `401` — Authentication failed
- `404` — Resource not found

---

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