## Retrieve **get** `/voices/{id}` Retrieve details for a single voice by its unique ID and provider. Returns the voice name, description, and provider metadata. ### Path Parameters - `id: string` ### Query Parameters - `provider: "cartesia" or "elevenlabs"` - `"cartesia"` - `"elevenlabs"` ### Returns - `voice: object { id, name, description }` - `id: string` - `name: string` - `description: optional string` ### Example ```http curl https://www.getrevox.com/api/voices/$ID \ -H "Authorization: Bearer $REVOX_API_KEY" ```