## Retrieve `voices.retrieve(strid, VoiceRetrieveParams**kwargs) -> VoiceRetrieveResponse` **get** `/voices/{id}` Retrieve details for a single voice by its unique ID and provider. Returns the voice name, description, and provider metadata. ### Parameters - `id: str` - `provider: Literal["cartesia", "elevenlabs"]` - `"cartesia"` - `"elevenlabs"` ### Returns - `class VoiceRetrieveResponse: …` - `voice: Voice` - `id: str` - `name: str` - `description: Optional[str]` ### Example ```python import os from revox import Revox client = Revox( api_key=os.environ.get("REVOX_API_KEY"), # This is the default and can be omitted ) voice = client.voices.retrieve( id="id", provider="cartesia", ) print(voice.voice) ```