User
Get User Info
This endpoint gets or creates a new user.
GET
/
sound_clone
/
api
/
v1
/
user
/
info
Header
curl --location 'https://api.myvocal.ai/sound_clone/api/v1/user/info' \
--header 'accessKey: xxxx'
{
"code": 1,
"message": "Success",
"data": {
"plan": "Business",
"status": "active",
"resetInDays": 2,
"benefit": {
"usedVoices": 146,
"totalVoices": 150,
"usedMonthlyChars": 3498604,
"totalMonthlyChars": 3500000,
"usedOrderChars": 0,
"totalOrderChars": 0
}
}
}
Header
accessKey
string
requiredYou can copy your api-key on https://www.myvocal.ai/profile after you have subscribed to Pro or Business Plan.
Response
code
number
Indicates whether the call was successful. 1 if successful.
message
string
When an exception occurs, specific exception information will be provided in the message.
data
object
Includes specific data.
curl --location 'https://api.myvocal.ai/sound_clone/api/v1/user/info' \
--header 'accessKey: xxxx'
{
"code": 1,
"message": "Success",
"data": {
"plan": "Business",
"status": "active",
"resetInDays": 2,
"benefit": {
"usedVoices": 146,
"totalVoices": 150,
"usedMonthlyChars": 3498604,
"totalMonthlyChars": 3500000,
"usedOrderChars": 0,
"totalOrderChars": 0
}
}
}