Skip to main content
GET
List API Keys

Authorizations

Authorization
string
header
default:$CARTESIA_ADMIN_API_KEY
required

Cartesia admin API key (sk_car_admin_...). Get one at play.cartesia.ai/keys/admin.

Headers

Cartesia-Version
enum<string>
default:2026-03-01
required

API version header.

Available options:
2026-03-01
Example:

"2026-03-01"

Query Parameters

limit
integer | null

The number of API keys to return per page. Defaults to 20. Values above 100 are silently capped at 100.

starting_after
string | null

A cursor for forward pagination. starting_after is an API key ID that defines your place in the list; the response will include keys that come after this ID. Cannot be combined with ending_before.

ending_before
string | null

A cursor for backward pagination. ending_before is an API key ID that defines your place in the list; the response will include keys that come before this ID. Cannot be combined with starting_after.

q
string | null

Free-text query that matches against the key's description, creator name, and creator email.

Response

data
ApiKey · object[]
required

The paginated list of API keys.

has_more
boolean
required

Whether there are more pages of API keys.

next_page
string | null

An ID that can be passed as starting_after or ending_before to get the next page of data.