Skip to main content
GET
/
api
/
getvoicedetail
Retrieve voice details
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"
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://api.fineshare.com/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

voice
string
required

The identifier of the voice to retrieve details for.

Response

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