---
title: "List API Keys"
method: GET
path: "/api-keys"
tags: ["ApiKeys"]
---

# List API Keys

`GET /api-keys`

Returns a paginated list of standard API keys owned by the authenticating organization. Only metadata is returned, not the keys themselves. Admin API keys are not included.

## Query parameters

- `limit` integer, nullable
- `starting_after` string, nullable
- `ending_before` string, nullable
- `q` string, nullable

## Headers

- `Cartesia-Version` '2026-03-01', date, required

## Response `200`

- ListApiKeysResponse
  - `data` ApiKey[], required — The paginated list of API keys.
    - `id` string, required — Stable identifier for the API key. Safe to expose.
    - `description` string, required — Human-readable description set when the key was created.
    - `created_at` string, date-time, required — When the API key was created.
    - `creator_email` string, nullable — Email of the user who created the key. `null` for older keys with no recorded creator.
    - `creator_still_in_org` boolean, nullable — Whether the creator is still a member of the organization. `null` for older keys with no recorded creator.
    - `creator_image_url` string, nullable — URL of the creator's avatar. Returned as `null` when the creator is no longer in the organization, and for older keys with no recorded creator.
  - `has_more` boolean, required — Whether there are more pages of API keys.
  - `next_page` string, nullable — An ID that can be passed as `starting_after` or `ending_before` to get the next page of data.

## Other responses

- `400` — Returned when `starting_after` and `ending_before` are both provided.

---

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