POST
/
api
/
fsmstexttospeech
curl --request POST \
  --url https://converter.fineshare.com/api/fsmstexttospeech \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "Engine": "v1",
  "AppId": "107",
  "FeatureId": "22",
  "speech": "<string>",
  "voice": "<string>",
  "platform": "web",
  "Parameter": {
    "Speed": "1.0",
    "LanguageCode": "<string>",
    "Pitch": "0.0"
  }
}'
{
  "message": "Text-to-speech processing successful."
}

Headers

Authorization
string
required

Bearer token for authentication.

Body

application/json
Engine
enum<string>

The engine to use for text-to-speech.

Available options:
v1,
v5,
v7
AppId
enum<string>

The application identifier.

Available options:
107
FeatureId
enum<string>

The feature identifier.

Available options:
22
speech
string

The input text to convert to speech.

voice
string

The voice configuration.

platform
enum<string>

The platform for which the speech is generated.

Available options:
web,
win,
mac,
phone
Parameter
object

Response

200
application/json
Successfully processed the text-to-speech request.
message
string
Example:

"Text-to-speech processing successful."