v1

latestOpenAPI 3.0.12026-07-2696152184.1 KB
Voices

List Voices

get/voices

Query parameters

limitinteger nullable

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

starting_afterstring nullable

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_beforestring nullable

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.

qstring nullable

Query string to search for voices by name, description, or Voice ID.

is_ownerboolean nullable

Whether to only return voices owned your organization.

gender'masculine' | 'feminine' | 'gender_neutral'

The gender presentation of the voices to return.

languagestring nullable

Filter voices by a language or language-locale pair such as en or en-GB. A language-locale pair returns accents for that specific locale; a language alone returns all accents for that language. Both - and _ separators are accepted.

expand[]VoiceExpandOptions[] nullable

Additional fields to include in the response.

Headers

Cartesia-Version'2026-03-01' date required
Example:2026-03-01

API version header.

Response

has_moreboolean required

Whether there are more voices to fetch.

next_pagestring

The ID of the voice. Find one in the Voice Library or via List Voices.

Example response

{
  "data": [
    {
      "id": "db6b0ed5-d5d3-463d-ae85-518a07d3c2b4",
      "is_owner": false,
      "access": {
        "type": "public",
        "visibility": "all"
      },
      "name": "Skylar",
      "tagline": "Friendly Guide",
      "description": "Approachable American female ideal for customer care and support.",
      "gender": "feminine",
      "language": "en",
      "country": "US",
      "created_at": "2026-03-31T17:37:05.961874Z",
      "is_public": true
    }
  ]
}