curl --request GET \
--url https://api.example.com/v1/voices/{voice_id} \
--header 'Authorization: Bearer <token>'{
"user_id": "<string>",
"voice_id": "<string>",
"name": "<string>",
"description": "",
"created_at": 123,
"updated_at": 123
}Get a voice by its id
curl --request GET \
--url https://api.example.com/v1/voices/{voice_id} \
--header 'Authorization: Bearer <token>'{
"user_id": "<string>",
"voice_id": "<string>",
"name": "<string>",
"description": "",
"created_at": 123,
"updated_at": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.