Retrieve voice details
curl --request GET \
--url https://converter.fineshare.com/api/getvoicedetailimport requests
url = "https://converter.fineshare.com/api/getvoicedetail"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://converter.fineshare.com/api/getvoicedetail', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://converter.fineshare.com/api/getvoicedetail",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://converter.fineshare.com/api/getvoicedetail"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://converter.fineshare.com/api/getvoicedetail")
.asString();require 'uri'
require 'net/http'
url = URI("https://converter.fineshare.com/api/getvoicedetail")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"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"
]
}
}{
"error": "Invalid voice identifier.",
"details": "The provided voice ID does not exist."
}{
"error": "Invalid voice identifier.",
"details": "The provided voice ID does not exist."
}{
"error": "Invalid voice identifier.",
"details": "The provided voice ID does not exist."
}Endpoint Voice
Voice Detail
GET
/
api
/
getvoicedetail
Retrieve voice details
curl --request GET \
--url https://converter.fineshare.com/api/getvoicedetailimport requests
url = "https://converter.fineshare.com/api/getvoicedetail"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://converter.fineshare.com/api/getvoicedetail', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://converter.fineshare.com/api/getvoicedetail",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://converter.fineshare.com/api/getvoicedetail"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://converter.fineshare.com/api/getvoicedetail")
.asString();require 'uri'
require 'net/http'
url = URI("https://converter.fineshare.com/api/getvoicedetail")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"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"
]
}
}{
"error": "Invalid voice identifier.",
"details": "The provided voice ID does not exist."
}{
"error": "Invalid voice identifier.",
"details": "The provided voice ID does not exist."
}{
"error": "Invalid voice identifier.",
"details": "The provided voice ID does not exist."
}Query Parameters
The identifier of the voice to retrieve details for.
Response
Detailed information about the voice.
Example:
"success"
Example:
"voice123"
Example:
"VoiceOne"
Available options:
male, female Example:
"female"
Example:
"en-US"
Example:
"standard"
Example:
"A standard female voice in US English."
Show child attributes
Show child attributes
⌘I