Skip to main content
GET
/
voices
List Voices
curl --request GET \
  --url https://api.cartesia.ai/voices \
  --header 'Authorization: Bearer <token>' \
  --header 'Cartesia-Version: <cartesia-version>'
{
  "data": [
    {
      "id": "<string>",
      "is_owner": true,
      "is_public": true,
      "name": "<string>",
      "description": "<string>",
      "gender": "masculine",
      "created_at": "2023-11-07T05:31:56Z",
      "is_starred": true,
      "language": "en"
    }
  ],
  "has_more": true,
  "next_page": "<string>"
}

Authorizations

Authorization
string
header
required

Cartesia API key

Headers

Cartesia-Version
enum<string>
required

API version header. Must be set to the API version, e.g. '2024-06-10'.

Available options:
2024-06-10,
2024-11-13,
2025-04-16
Example:

"2025-04-16"

Query Parameters

limit
integer | null

The number of Voices to return per page, ranging between 1 and 100.

starting_after
string | null

A cursor to use in pagination. starting_after is a Voice ID that defines your place in the list. For example, if you make a /voices request and receive 100 objects, ending with voice_abc123, your subsequent call can include starting_after=voice_abc123 to fetch the next page of the list.

ending_before
string | null

A cursor to use in pagination. ending_before is a Voice ID that defines your place in the list. For example, if you make a /voices request and receive 100 objects, starting with voice_abc123, your subsequent call can include ending_before=voice_abc123 to fetch the previous page of the list.

is_owner
boolean | null

Whether to only return voices owned by the current user.

is_starred
boolean | null

Whether to only return starred voices.

gender
enum<string>

The gender presentation of the voices to return.

Available options:
masculine,
feminine,
gender_neutral
expand[]
enum<string>[] | null

Additional fields to include in the response.

Response

200 - application/json
data
Voice · object[]
required

The paginated list of Voices.

has_more
boolean
required

Whether there are more Voices to fetch (using starting_after=id, where id is the ID of the last Voice in the current response).

next_page
string

(Deprecated - use the id of the last Voice in the current response instead.) An ID that can be passed as starting_after to get the next page of Voices.

I