GET
/
api
/
getvoicedetail
curl --request GET \
  --url https://converter.fineshare.com/api/getvoicedetail
{
  "status": "success",
  "voiceId": "voice123",
  "name": "VoiceOne",
  "gender": "female",
  "language": "en-US",
  "category": "standard",
  "description": "A standard female voice in US English.",
  "additionalDetails": {
    "pitch": "neutral",
    "speed": "normal",
    "supportedFormats": [
      "mp3",
      "wav"
    ]
  }
}

Query Parameters

voice
string
required

The identifier of the voice to retrieve details for.

Response

200
application/json
Detailed information about the voice.
status
string
Example:

"success"

voiceId
string
Example:

"voice123"

name
string
Example:

"VoiceOne"

gender
enum<string>
Available options:
male,
female
Example:

"female"

language
string
Example:

"en-US"

category
string
Example:

"standard"

description
string
Example:

"A standard female voice in US English."

additionalDetails
object