> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cartesia.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get a Voice

> Get a specific voice.

<Tabs>
  <Tab title="Python">
    ```python theme={null}
    def voices_get(client: Cartesia) -> Any:
        """Get a specific voice."""
        voice = client.voices.get("voice-id")
        return voice
    ```

    From [cartesia-python/examples/examples.py:468](https://github.com/cartesia-ai/cartesia-python/blob/main/examples/examples.py#L468)
  </Tab>

  <Tab title="TypeScript">
    ```typescript theme={null}
    async function voicesGet(client: Cartesia): Promise<void> {
      /** Get a specific voice. */
      const voice = await client.voices.get('6ccbfb76-1fc6-48f7-b71d-91ac6298247b');
      console.log(voice.name);
    }
    ```

    From [cartesia-js/examples/node\_examples.ts:342](https://github.com/cartesia-ai/cartesia-js/blob/main/examples/node_examples.ts#L342)
  </Tab>
</Tabs>

## Run this example

<Tabs>
  <Tab title="Python">
    ```sh theme={null}
    cd cartesia-python
    CARTESIA_API_KEY=YOUR_KEY python3 examples/examples.py voices_get
    ```
  </Tab>

  <Tab title="TypeScript">
    ```sh theme={null}
    cd cartesia-js
    CARTESIA_API_KEY=YOUR_KEY npx ts-node examples/node_examples.ts voicesGet
    ```
  </Tab>
</Tabs>
